public enum ReplicationDataFormat extends Enum<ReplicationDataFormat> implements org.eclipse.emf.common.util.Enumerator
| Enum Constant and Description |
|---|
ARRAY
The 'ARRAY' literal object.
|
BLOB
The 'BLOB' literal object.
|
BYTES
The 'BYTES' literal object.
|
JSON
The 'JSON' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
ARRAY_VALUE
The 'ARRAY' literal value.
|
static int |
BLOB_VALUE
The 'BLOB' literal value.
|
static int |
BYTES_VALUE
The 'BYTES' literal value.
|
static int |
JSON_VALUE
The 'JSON' literal value.
|
static List<ReplicationDataFormat> |
VALUES
A public read-only list of all the 'Replication Data Format' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static ReplicationDataFormat |
get(int value)
Returns the 'Replication Data Format' literal with the specified integer value.
|
static ReplicationDataFormat |
get(String literal)
Returns the 'Replication Data Format' literal with the specified literal value.
|
static ReplicationDataFormat |
getByName(String name)
Returns the 'Replication Data Format' 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 ReplicationDataFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationDataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationDataFormat BLOB
BLOB_VALUEpublic static final ReplicationDataFormat BYTES
BYTES_VALUEpublic static final ReplicationDataFormat JSON
JSON_VALUEpublic static final ReplicationDataFormat ARRAY
ARRAY_VALUEpublic static final int BLOB_VALUE
If the meaning of 'BLOB' literal object isn't clear, there really should be more of a description here...
BLOB,
Constant Field Valuespublic static final int BYTES_VALUE
If the meaning of 'BYTES' literal object isn't clear, there really should be more of a description here...
BYTES,
Constant Field Valuespublic static final int JSON_VALUE
If the meaning of 'JSON' literal object isn't clear, there really should be more of a description here...
JSON,
Constant Field Valuespublic static final int ARRAY_VALUE
If the meaning of 'ARRAY' literal object isn't clear, there really should be more of a description here...
ARRAY,
Constant Field Valuespublic static final List<ReplicationDataFormat> VALUES
public static ReplicationDataFormat[] values()
for (ReplicationDataFormat c : ReplicationDataFormat.values()) System.out.println(c);
public static ReplicationDataFormat 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 ReplicationDataFormat get(String literal)
public static ReplicationDataFormat getByName(String name)
public static ReplicationDataFormat get(int value)
public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic String toString()
toString in class Enum<ReplicationDataFormat>