public enum TimeUnitTypeTypeBase extends java.lang.Enum<TimeUnitTypeTypeBase>
EjbJar31Package.getTimeUnitTypeTypeBase()| Enum Constant and Description |
|---|
DAYS
The 'Days' literal object.
|
HOURS
The 'Hours' literal object.
|
MICROSECONDS
The 'Microseconds' literal object.
|
MILLISECONDS
The 'Milliseconds' literal object.
|
MINUTES
The 'Minutes' literal object.
|
NANOSECONDS
The 'Nanoseconds' literal object.
|
SECONDS
The 'Seconds' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
DAYS_VALUE
The 'Days' literal value.
|
static int |
HOURS_VALUE
The 'Hours' literal value.
|
static int |
MICROSECONDS_VALUE
The 'Microseconds' literal value.
|
static int |
MILLISECONDS_VALUE
The 'Milliseconds' literal value.
|
static int |
MINUTES_VALUE
The 'Minutes' literal value.
|
static int |
NANOSECONDS_VALUE
The 'Nanoseconds' literal value.
|
static int |
SECONDS_VALUE
The 'Seconds' literal value.
|
static java.util.List<TimeUnitTypeTypeBase> |
VALUES
A public read-only list of all the 'Time Unit Type Type Base' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static TimeUnitTypeTypeBase |
get(int value)
Returns the 'Time Unit Type Type Base' literal with the specified integer value.
|
static TimeUnitTypeTypeBase |
get(java.lang.String literal)
Returns the 'Time Unit Type Type Base' literal with the specified literal value.
|
static TimeUnitTypeTypeBase |
getByName(java.lang.String name)
Returns the 'Time Unit Type Type Base' 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 TimeUnitTypeTypeBase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimeUnitTypeTypeBase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeUnitTypeTypeBase DAYS
DAYS_VALUEpublic static final TimeUnitTypeTypeBase HOURS
HOURS_VALUEpublic static final TimeUnitTypeTypeBase MINUTES
MINUTES_VALUEpublic static final TimeUnitTypeTypeBase SECONDS
SECONDS_VALUEpublic static final TimeUnitTypeTypeBase MILLISECONDS
MILLISECONDS_VALUEpublic static final TimeUnitTypeTypeBase MICROSECONDS
MICROSECONDS_VALUEpublic static final TimeUnitTypeTypeBase NANOSECONDS
NANOSECONDS_VALUEpublic static final int DAYS_VALUE
If the meaning of 'Days' literal object isn't clear, there really should be more of a description here...
DAYS,
Constant Field Valuespublic static final int HOURS_VALUE
If the meaning of 'Hours' literal object isn't clear, there really should be more of a description here...
HOURS,
Constant Field Valuespublic static final int MINUTES_VALUE
If the meaning of 'Minutes' literal object isn't clear, there really should be more of a description here...
MINUTES,
Constant Field Valuespublic static final int SECONDS_VALUE
If the meaning of 'Seconds' literal object isn't clear, there really should be more of a description here...
SECONDS,
Constant Field Valuespublic static final int MILLISECONDS_VALUE
If the meaning of 'Milliseconds' literal object isn't clear, there really should be more of a description here...
MILLISECONDS,
Constant Field Valuespublic static final int MICROSECONDS_VALUE
If the meaning of 'Microseconds' literal object isn't clear, there really should be more of a description here...
MICROSECONDS,
Constant Field Valuespublic static final int NANOSECONDS_VALUE
If the meaning of 'Nanoseconds' literal object isn't clear, there really should be more of a description here...
NANOSECONDS,
Constant Field Valuespublic static final java.util.List<TimeUnitTypeTypeBase> VALUES
public static TimeUnitTypeTypeBase[] values()
for (TimeUnitTypeTypeBase c : TimeUnitTypeTypeBase.values()) System.out.println(c);
public static TimeUnitTypeTypeBase valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static TimeUnitTypeTypeBase get(java.lang.String literal)
public static TimeUnitTypeTypeBase getByName(java.lang.String name)
public static TimeUnitTypeTypeBase get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<TimeUnitTypeTypeBase>