org.eclipse.xsd
Enum XSDConstraint

java.lang.Object
  extended by java.lang.Enum<XSDConstraint>
      extended by org.eclipse.xsd.XSDConstraint
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<XSDConstraint>, Enumerator

public enum XSDConstraint
extends java.lang.Enum<XSDConstraint>
implements Enumerator

A representation of the literals of the enumeration 'Constraint'.

See Also:
XSDAttributeUse.getConstraint(), XSDFeature.getConstraint(), XSDFeature.getConstraint(), XSDPackage.getXSDConstraint()

Enum Constant Summary
DEFAULT_LITERAL
          The 'Default' literal object
FIXED_LITERAL
          The 'Fixed' literal object
 
Field Summary
static int DEFAULT
          The 'Default' literal value
static int FIXED
          The 'Fixed' literal value
static java.util.List<XSDConstraint> VALUES
          A public read-only list of all the 'Constraint' enumerators
 
Method Summary
static XSDConstraint get(int value)
          Returns the 'Constraint' literal with the specified integer value
static XSDConstraint get(java.lang.String literal)
          Returns the 'Constraint' literal with the specified literal value
static XSDConstraint getByName(java.lang.String name)
          Returns the 'Constraint' literal with the specified name
 java.lang.String getLiteral()
           
 java.lang.String getName()
           
 int getValue()
           
 java.lang.String toString()
          Returns the literal value of the enumerator, which is its string representation
static XSDConstraint valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static XSDConstraint[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DEFAULT_LITERAL

public static final XSDConstraint DEFAULT_LITERAL
The 'Default' literal object.

See Also:
DEFAULT

FIXED_LITERAL

public static final XSDConstraint FIXED_LITERAL
The 'Fixed' literal object.

See Also:
FIXED
Field Detail

DEFAULT

public static final int DEFAULT
The 'Default' literal value.

This is used to indicate that an attribute use defaults to its constrained value.

See Also:
DEFAULT_LITERAL, Constant Field Values

FIXED

public static final int FIXED
The 'Fixed' literal value.

This is used to indicate that an attribute use is fixed to its constrained value.

See Also:
FIXED_LITERAL, Constant Field Values

VALUES

public static final java.util.List<XSDConstraint> VALUES
A public read-only list of all the 'Constraint' enumerators.

Method Detail

values

public static final XSDConstraint[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(XSDConstraint c : XSDConstraint.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static XSDConstraint valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

get

public static XSDConstraint get(java.lang.String literal)
Returns the 'Constraint' literal with the specified literal value.


getByName

public static XSDConstraint getByName(java.lang.String name)
Returns the 'Constraint' literal with the specified name.


get

public static XSDConstraint get(int value)
Returns the 'Constraint' literal with the specified integer value.


getValue

public int getValue()

Specified by:
getValue in interface Enumerator

getName

public java.lang.String getName()

Specified by:
getName in interface Enumerator

getLiteral

public java.lang.String getLiteral()

Specified by:
getLiteral in interface Enumerator

toString

public java.lang.String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<XSDConstraint>

Copyright 2001-2006 IBM Corporation and others.
All Rights Reserved.