public enum SMPTEFormat extends java.lang.Enum<SMPTEFormat>
WavPackage.getSMPTEFormat()
Enum Constant and Description |
---|
SMPTE_0
The 'SMPTE 0' literal object.
|
SMPTE_24
The 'SMPTE 24' literal object.
|
SMPTE_25
The 'SMPTE 25' literal object.
|
SMPTE_29
The 'SMPTE 29' literal object.
|
SMPTE_30
The 'SMPTE 30' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
SMPTE_0_VALUE
The 'SMPTE 0' literal value.
|
static int |
SMPTE_24_VALUE
The 'SMPTE 24' literal value.
|
static int |
SMPTE_25_VALUE
The 'SMPTE 25' literal value.
|
static int |
SMPTE_29_VALUE
The 'SMPTE 29' literal value.
|
static int |
SMPTE_30_VALUE
The 'SMPTE 30' literal value.
|
static java.util.List<SMPTEFormat> |
VALUES
A public read-only list of all the 'SMPTE Format' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static SMPTEFormat |
get(int value)
Returns the 'SMPTE Format' literal with the specified integer value.
|
static SMPTEFormat |
get(java.lang.String literal)
Returns the 'SMPTE Format' literal with the specified literal value.
|
static SMPTEFormat |
getByName(java.lang.String name)
Returns the 'SMPTE Format' 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 SMPTEFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SMPTEFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMPTEFormat SMPTE_0
SMPTE_0_VALUE
public static final SMPTEFormat SMPTE_24
SMPTE_24_VALUE
public static final SMPTEFormat SMPTE_25
SMPTE_25_VALUE
public static final SMPTEFormat SMPTE_29
SMPTE_29_VALUE
public static final SMPTEFormat SMPTE_30
SMPTE_30_VALUE
public static final int SMPTE_0_VALUE
If the meaning of 'SMPTE 0' literal object isn't clear, there really should be more of a description here...
SMPTE_0
,
Constant Field Valuespublic static final int SMPTE_24_VALUE
If the meaning of 'SMPTE 24' literal object isn't clear, there really should be more of a description here...
SMPTE_24
,
Constant Field Valuespublic static final int SMPTE_25_VALUE
If the meaning of 'SMPTE 25' literal object isn't clear, there really should be more of a description here...
SMPTE_25
,
Constant Field Valuespublic static final int SMPTE_29_VALUE
If the meaning of 'SMPTE 29' literal object isn't clear, there really should be more of a description here...
SMPTE_29
,
Constant Field Valuespublic static final int SMPTE_30_VALUE
If the meaning of 'SMPTE 30' literal object isn't clear, there really should be more of a description here...
SMPTE_30
,
Constant Field Valuespublic static final java.util.List<SMPTEFormat> VALUES
public static SMPTEFormat[] values()
for (SMPTEFormat c : SMPTEFormat.values()) System.out.println(c);
public static SMPTEFormat 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 SMPTEFormat get(java.lang.String literal)
public static SMPTEFormat getByName(java.lang.String name)
public static SMPTEFormat 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<SMPTEFormat>