public enum TimedQualifier extends Enum<TimedQualifier> implements Enumerator
SfcPackage.getTimedQualifier()| Enum Constant and Description |
|---|
STORED_TIME_DELAYED
The 'STORED TIME DELAYED' literal object.
|
STORED_TIME_LIMITED
The 'STORED TIME LIMITED' literal object.
|
TIME_DELAYED
The 'TIME DELAYED' literal object.
|
TIME_DELAYED_STORED
The 'TIME DELAYED STORED' literal object.
|
TIME_LIMITED
The 'TIME LIMITED' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
STORED_TIME_DELAYED_VALUE
The 'STORED TIME DELAYED' literal value.
|
static int |
STORED_TIME_LIMITED_VALUE
The 'STORED TIME LIMITED' literal value.
|
static int |
TIME_DELAYED_STORED_VALUE
The 'TIME DELAYED STORED' literal value.
|
static int |
TIME_DELAYED_VALUE
The 'TIME DELAYED' literal value.
|
static int |
TIME_LIMITED_VALUE
The 'TIME LIMITED' literal value.
|
static List<TimedQualifier> |
VALUES
A public read-only list of all the 'Timed Qualifier' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static TimedQualifier |
get(int value)
Returns the 'Timed Qualifier' literal with the specified integer value.
|
static TimedQualifier |
get(String literal)
Returns the 'Timed Qualifier' literal with the specified literal value.
|
static TimedQualifier |
getByName(String name)
Returns the 'Timed Qualifier' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static TimedQualifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimedQualifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimedQualifier TIME_LIMITED
TIME_LIMITED_VALUEpublic static final TimedQualifier TIME_DELAYED
TIME_DELAYED_VALUEpublic static final TimedQualifier STORED_TIME_DELAYED
STORED_TIME_DELAYED_VALUEpublic static final TimedQualifier TIME_DELAYED_STORED
TIME_DELAYED_STORED_VALUEpublic static final TimedQualifier STORED_TIME_LIMITED
STORED_TIME_LIMITED_VALUEpublic static final int TIME_LIMITED_VALUE
If the meaning of 'TIME LIMITED' literal object isn't clear, there really should be more of a description here...
TIME_LIMITED,
Constant Field Valuespublic static final int TIME_DELAYED_VALUE
If the meaning of 'TIME DELAYED' literal object isn't clear, there really should be more of a description here...
TIME_DELAYED,
Constant Field Valuespublic static final int STORED_TIME_DELAYED_VALUE
If the meaning of 'STORED TIME DELAYED' literal object isn't clear, there really should be more of a description here...
STORED_TIME_DELAYED,
Constant Field Valuespublic static final int TIME_DELAYED_STORED_VALUE
If the meaning of 'TIME DELAYED STORED' literal object isn't clear, there really should be more of a description here...
TIME_DELAYED_STORED,
Constant Field Valuespublic static final int STORED_TIME_LIMITED_VALUE
If the meaning of 'STORED TIME LIMITED' literal object isn't clear, there really should be more of a description here...
STORED_TIME_LIMITED,
Constant Field Valuespublic static final List<TimedQualifier> VALUES
public static TimedQualifier[] values()
for (TimedQualifier c : TimedQualifier.values()) System.out.println(c);
public static TimedQualifier valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static TimedQualifier get(String literal)
literal - the literal.null.public static TimedQualifier getByName(String name)
name - the name.null.public static TimedQualifier get(int value)
value - the integer value.null.public int getValue()
getValue in interface Enumeratorpublic String getName()
getName in interface Enumeratorpublic String getLiteral()
getLiteral in interface Enumeratorpublic String toString()
toString in class Enum<TimedQualifier>