Package net.opengis.wfs20
Enum StateValueTypeMember0
- Object
-
- Enum<StateValueTypeMember0>
-
- StateValueTypeMember0
-
- All Implemented Interfaces:
Serializable,Comparable<StateValueTypeMember0>,Enumerator
public enum StateValueTypeMember0 extends Enum<StateValueTypeMember0> implements Enumerator
A representation of the literals of the enumeration 'State Value Type Member0', and utility methods for working with them.- See Also:
Wfs20Package.getStateValueTypeMember0()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FUTUREThe 'Future' literal object.RETIREDThe 'Retired' literal object.SUPERSEDEDThe 'Superseded' literal object.VALIDThe 'Valid' literal object.
-
Field Summary
Fields Modifier and Type Field Description static intFUTURE_VALUEThe 'Future' literal value.static intRETIRED_VALUEThe 'Retired' literal value.static intSUPERSEDED_VALUEThe 'Superseded' literal value.static intVALID_VALUEThe 'Valid' literal value.static List<StateValueTypeMember0>VALUESA public read-only list of all the 'State Value Type Member0' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StateValueTypeMember0get(int value)Returns the 'State Value Type Member0' literal with the specified integer value.static StateValueTypeMember0get(String literal)Returns the 'State Value Type Member0' literal with the specified literal value.static StateValueTypeMember0getByName(String name)Returns the 'State Value Type Member0' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static StateValueTypeMember0valueOf(String name)Returns the enum constant of this type with the specified name.static StateValueTypeMember0[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALID
public static final StateValueTypeMember0 VALID
The 'Valid' literal object.- See Also:
VALID_VALUE
-
SUPERSEDED
public static final StateValueTypeMember0 SUPERSEDED
The 'Superseded' literal object.- See Also:
SUPERSEDED_VALUE
-
RETIRED
public static final StateValueTypeMember0 RETIRED
The 'Retired' literal object.- See Also:
RETIRED_VALUE
-
FUTURE
public static final StateValueTypeMember0 FUTURE
The 'Future' literal object.- See Also:
FUTURE_VALUE
-
-
Field Detail
-
VALID_VALUE
public static final int VALID_VALUE
The 'Valid' literal value.If the meaning of 'Valid' literal object isn't clear, there really should be more of a description here...
- See Also:
VALID, Constant Field Values
-
SUPERSEDED_VALUE
public static final int SUPERSEDED_VALUE
The 'Superseded' literal value.If the meaning of 'Superseded' literal object isn't clear, there really should be more of a description here...
- See Also:
SUPERSEDED, Constant Field Values
-
RETIRED_VALUE
public static final int RETIRED_VALUE
The 'Retired' literal value.If the meaning of 'Retired' literal object isn't clear, there really should be more of a description here...
- See Also:
RETIRED, Constant Field Values
-
FUTURE_VALUE
public static final int FUTURE_VALUE
The 'Future' literal value.If the meaning of 'Future' literal object isn't clear, there really should be more of a description here...
- See Also:
FUTURE, Constant Field Values
-
VALUES
public static final List<StateValueTypeMember0> VALUES
A public read-only list of all the 'State Value Type Member0' enumerators.
-
-
Method Detail
-
values
public static StateValueTypeMember0[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StateValueTypeMember0 c : StateValueTypeMember0.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StateValueTypeMember0 valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
get
public static StateValueTypeMember0 get(String literal)
Returns the 'State Value Type Member0' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null.
-
getByName
public static StateValueTypeMember0 getByName(String name)
Returns the 'State Value Type Member0' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null.
-
get
public static StateValueTypeMember0 get(int value)
Returns the 'State Value Type Member0' literal with the specified integer value.- Parameters:
value- the integer value.- Returns:
- the matching enumerator or
null.
-
getValue
public int getValue()
- Specified by:
getValuein interfaceEnumerator
-
getName
public String getName()
- Specified by:
getNamein interfaceEnumerator
-
getLiteral
public String getLiteral()
- Specified by:
getLiteralin interfaceEnumerator
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toStringin classEnum<StateValueTypeMember0>
-
-