public enum SignalIntrinsicType extends java.lang.Enum<SignalIntrinsicType> implements org.eclipse.emf.common.util.Enumerator
SsmePackage.getSignalIntrinsicType()
Enum Constant and Description |
---|
BOOLEAN_LITERAL
The 'Boolean' literal object
|
CHAR_LITERAL
The 'Char' literal object
|
COMPLEX_LITERAL
The 'Complex' literal object
|
DCOMPLEX_LITERAL
The 'Dcomplex' literal object
|
DREAL_LITERAL
The 'Dreal' literal object
|
EVENT_LITERAL
The 'Event' literal object
|
INTEGER_LITERAL
The 'Integer' literal object
|
LONG_LITERAL
The 'Long' literal object
|
REAL_LITERAL
The 'Real' literal object
|
SHORT_LITERAL
The 'Short' literal object
|
STRING_LITERAL
The 'String' literal object
|
UNDEFINED_LITERAL
The 'Undefined' literal object
|
Modifier and Type | Field and Description |
---|---|
static int |
BOOLEAN
The 'Boolean' literal value
|
static int |
CHAR
The 'Char' literal value
|
static int |
COMPLEX
The 'Complex' literal value
|
static int |
DCOMPLEX
The 'Dcomplex' literal value
|
static int |
DREAL
The 'Dreal' literal value
|
static int |
EVENT
The 'Event' literal value
|
static int |
INTEGER
The 'Integer' literal value
|
static int |
LONG
The 'Long' literal value
|
static int |
REAL
The 'Real' literal value
|
static int |
SHORT
The 'Short' literal value
|
static int |
STRING
The 'String' literal value
|
static int |
UNDEFINED
The 'Undefined' literal value
|
static java.util.List<SignalIntrinsicType> |
VALUES
A public read-only list of all the 'Signal Intrinsic Type' enumerators
|
Modifier and Type | Method and Description |
---|---|
static SignalIntrinsicType |
get(int value)
Returns the 'Signal Intrinsic Type' literal with the specified integer value
|
static SignalIntrinsicType |
get(java.lang.String literal)
Returns the 'Signal Intrinsic Type' literal with the specified literal value
|
static SignalIntrinsicType |
getByName(java.lang.String name)
Returns the 'Signal Intrinsic Type' 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 SignalIntrinsicType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SignalIntrinsicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignalIntrinsicType UNDEFINED_LITERAL
UNDEFINED
public static final SignalIntrinsicType BOOLEAN_LITERAL
BOOLEAN
public static final SignalIntrinsicType CHAR_LITERAL
CHAR
public static final SignalIntrinsicType COMPLEX_LITERAL
COMPLEX
public static final SignalIntrinsicType DCOMPLEX_LITERAL
DCOMPLEX
public static final SignalIntrinsicType DREAL_LITERAL
DREAL
public static final SignalIntrinsicType EVENT_LITERAL
EVENT
public static final SignalIntrinsicType INTEGER_LITERAL
INTEGER
public static final SignalIntrinsicType LONG_LITERAL
LONG
public static final SignalIntrinsicType REAL_LITERAL
REAL
public static final SignalIntrinsicType SHORT_LITERAL
SHORT
public static final SignalIntrinsicType STRING_LITERAL
STRING
public static final int UNDEFINED
If the meaning of 'Undefined' literal object isn't clear, there really should be more of a description here...
UNDEFINED_LITERAL
,
Constant Field Valuespublic static final int BOOLEAN
If the meaning of 'Boolean' literal object isn't clear, there really should be more of a description here...
BOOLEAN_LITERAL
,
Constant Field Valuespublic static final int CHAR
If the meaning of 'Char' literal object isn't clear, there really should be more of a description here...
CHAR_LITERAL
,
Constant Field Valuespublic static final int COMPLEX
If the meaning of 'Complex' literal object isn't clear, there really should be more of a description here...
COMPLEX_LITERAL
,
Constant Field Valuespublic static final int DCOMPLEX
If the meaning of 'Dcomplex' literal object isn't clear, there really should be more of a description here...
DCOMPLEX_LITERAL
,
Constant Field Valuespublic static final int DREAL
If the meaning of 'Dreal' literal object isn't clear, there really should be more of a description here...
DREAL_LITERAL
,
Constant Field Valuespublic static final int EVENT
If the meaning of 'Event' literal object isn't clear, there really should be more of a description here...
EVENT_LITERAL
,
Constant Field Valuespublic static final int INTEGER
If the meaning of 'Integer' literal object isn't clear, there really should be more of a description here...
INTEGER_LITERAL
,
Constant Field Valuespublic static final int LONG
If the meaning of 'Long' literal object isn't clear, there really should be more of a description here...
LONG_LITERAL
,
Constant Field Valuespublic static final int REAL
If the meaning of 'Real' literal object isn't clear, there really should be more of a description here...
REAL_LITERAL
,
Constant Field Valuespublic static final int SHORT
If the meaning of 'Short' literal object isn't clear, there really should be more of a description here...
SHORT_LITERAL
,
Constant Field Valuespublic static final int STRING
If the meaning of 'String' literal object isn't clear, there really should be more of a description here...
STRING_LITERAL
,
Constant Field Valuespublic static final java.util.List<SignalIntrinsicType> VALUES
public static SignalIntrinsicType[] values()
for (SignalIntrinsicType c : SignalIntrinsicType.values()) System.out.println(c);
public static SignalIntrinsicType 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 SignalIntrinsicType get(java.lang.String literal)
literal
- the literal.null
.public static SignalIntrinsicType getByName(java.lang.String name)
name
- the name.null
.public static SignalIntrinsicType get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<SignalIntrinsicType>