Package org.w3.xlink
Class ShowType
- Object
-
- AbstractEnumerator
-
- ShowType
-
- All Implemented Interfaces:
Serializable,Enumerator
public final class ShowType extends AbstractEnumeratorA representation of the literals of the enumeration 'Show Type', and utility methods for working with them.- See Also:
XlinkPackage.getShowType(), Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intEMBEDThe 'Embed' literal value.static ShowTypeEMBED_LITERALThe 'Embed' literal object.static intNEWThe 'New' literal value.static ShowTypeNEW_LITERALThe 'New' literal object.static intNONEThe 'None' literal value.static ShowTypeNONE_LITERALThe 'None' literal object.static intOTHERThe 'Other' literal value.static ShowTypeOTHER_LITERALThe 'Other' literal object.static intREPLACEThe 'Replace' literal value.static ShowTypeREPLACE_LITERALThe 'Replace' literal object.static ListVALUESA public read-only list of all the 'Show Type' enumerators.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShowTypeget(int value)Returns the 'Show Type' literal with the specified integer value.static ShowTypeget(String literal)Returns the 'Show Type' literal with the specified literal value.static ShowTypegetByName(String name)Returns the 'Show Type' literal with the specified name.
-
-
-
Field Detail
-
NEW
public static final int NEW
The 'New' literal value.If the meaning of 'New' literal object isn't clear, there really should be more of a description here...
- See Also:
NEW_LITERAL, Constant Field Values
-
REPLACE
public static final int REPLACE
The 'Replace' literal value.If the meaning of 'Replace' literal object isn't clear, there really should be more of a description here...
- See Also:
REPLACE_LITERAL, Constant Field Values
-
EMBED
public static final int EMBED
The 'Embed' literal value.If the meaning of 'Embed' literal object isn't clear, there really should be more of a description here...
- See Also:
EMBED_LITERAL, Constant Field Values
-
OTHER
public static final int OTHER
The 'Other' literal value.If the meaning of 'Other' literal object isn't clear, there really should be more of a description here...
- See Also:
OTHER_LITERAL, Constant Field Values
-
NONE
public static final int NONE
The 'None' literal value.If the meaning of 'None' literal object isn't clear, there really should be more of a description here...
- See Also:
NONE_LITERAL, Constant Field Values
-
REPLACE_LITERAL
public static final ShowType REPLACE_LITERAL
The 'Replace' literal object.- See Also:
REPLACE
-
EMBED_LITERAL
public static final ShowType EMBED_LITERAL
The 'Embed' literal object.- See Also:
EMBED
-
OTHER_LITERAL
public static final ShowType OTHER_LITERAL
The 'Other' literal object.- See Also:
OTHER
-
VALUES
public static final List VALUES
A public read-only list of all the 'Show Type' enumerators.
-
-
Method Detail
-
get
public static ShowType get(String literal)
Returns the 'Show Type' literal with the specified literal value.
-
getByName
public static ShowType getByName(String name)
Returns the 'Show Type' literal with the specified name.
-
get
public static ShowType get(int value)
Returns the 'Show Type' literal with the specified integer value.
-
-