|
TPTP 4.6.0 Platform Project Public API Specification |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<TRCMethodProperties>
org.eclipse.hyades.models.trace.TRCMethodProperties
public enum TRCMethodProperties
A representation of the literals of the enumeration 'TRC Method Properties', and utility methods for working with them. Used as a bitmask for the TRCMethod.modifier field.
TracePackage.getTRCMethodProperties()| Enum Constant Summary | |
|---|---|
JAVA_ABSTRACT_LITERAL
The 'JAVA ABSTRACT' literal object |
|
JAVA_CONSTRUCTOR_LITERAL
The 'JAVA CONSTRUCTOR' literal object |
|
JAVA_DEFAULT_VISIBILITY_LITERAL
The 'JAVA DEFAULT VISIBILITY' literal object |
|
JAVA_FINALIZER_LITERAL
The 'JAVA FINALIZER' literal object |
|
JAVA_NATIVE_LITERAL
The 'JAVA NATIVE' literal object |
|
JAVA_PRIVATE_LITERAL
The 'JAVA PRIVATE' literal object |
|
JAVA_PROTECTED_LITERAL
The 'JAVA PROTECTED' literal object |
|
JAVA_PUBLIC_LITERAL
The 'JAVA PUBLIC' literal object |
|
JAVA_STATIC_LITERAL
The 'JAVA STATIC' literal object |
|
JAVA_SYNCHRONIZED_LITERAL
The 'JAVA SYNCHRONIZED' literal object |
|
| Field Summary | |
|---|---|
static int |
JAVA_ABSTRACT
The 'JAVA ABSTRACT' literal value |
static int |
JAVA_CONSTRUCTOR
The 'JAVA CONSTRUCTOR' literal value |
static int |
JAVA_DEFAULT_VISIBILITY
The 'JAVA DEFAULT VISIBILITY' literal value |
static int |
JAVA_FINALIZER
The 'JAVA FINALIZER' literal value |
static int |
JAVA_NATIVE
The 'JAVA NATIVE' literal value |
static int |
JAVA_PRIVATE
The 'JAVA PRIVATE' literal value |
static int |
JAVA_PROTECTED
The 'JAVA PROTECTED' literal value |
static int |
JAVA_PUBLIC
The 'JAVA PUBLIC' literal value |
static int |
JAVA_STATIC
The 'JAVA STATIC' literal value |
static int |
JAVA_SYNCHRONIZED
The 'JAVA SYNCHRONIZED' literal value |
static java.util.List<TRCMethodProperties> |
VALUES
A public read-only list of all the 'TRC Method Properties' enumerators |
| Method Summary | |
|---|---|
static TRCMethodProperties |
get(int value)
Returns the 'TRC Method Properties' literal with the specified integer value |
static TRCMethodProperties |
get(java.lang.String literal)
Returns the 'TRC Method Properties' literal with the specified literal value |
static TRCMethodProperties |
getByLabel(java.lang.String label)
|
static TRCMethodProperties |
getByName(java.lang.String name)
Returns the 'TRC Method Properties' literal with the specified name |
java.lang.String |
getLabel()
|
java.lang.String |
getLiteral()
|
java.lang.String |
getName()
|
static java.lang.String |
getString(java.lang.String key)
|
int |
getValue()
|
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation |
static TRCMethodProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TRCMethodProperties[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TRCMethodProperties JAVA_NATIVE_LITERAL
If the meaning of 'JAVA NATIVE' literal object isn't clear, there really should be more of a description here...
JAVA_NATIVEpublic static final TRCMethodProperties JAVA_SYNCHRONIZED_LITERAL
If the meaning of 'JAVA SYNCHRONIZED' literal object isn't clear, there really should be more of a description here...
JAVA_SYNCHRONIZEDpublic static final TRCMethodProperties JAVA_PUBLIC_LITERAL
If the meaning of 'JAVA PUBLIC' literal object isn't clear, there really should be more of a description here...
JAVA_PUBLICpublic static final TRCMethodProperties JAVA_PRIVATE_LITERAL
If the meaning of 'JAVA PRIVATE' literal object isn't clear, there really should be more of a description here...
JAVA_PRIVATEpublic static final TRCMethodProperties JAVA_PROTECTED_LITERAL
If the meaning of 'JAVA PROTECTED' literal object isn't clear, there really should be more of a description here...
JAVA_PROTECTEDpublic static final TRCMethodProperties JAVA_DEFAULT_VISIBILITY_LITERAL
If the meaning of 'JAVA DEFAULT VISIBILITY' literal object isn't clear, there really should be more of a description here...
JAVA_DEFAULT_VISIBILITYpublic static final TRCMethodProperties JAVA_STATIC_LITERAL
If the meaning of 'JAVA STATIC' literal object isn't clear, there really should be more of a description here...
JAVA_STATICpublic static final TRCMethodProperties JAVA_CONSTRUCTOR_LITERAL
If the meaning of 'JAVA CONSTRUCTOR' literal object isn't clear, there really should be more of a description here...
JAVA_CONSTRUCTORpublic static final TRCMethodProperties JAVA_ABSTRACT_LITERAL
If the meaning of 'JAVA ABSTRACT' literal object isn't clear, there really should be more of a description here...
JAVA_ABSTRACTpublic static final TRCMethodProperties JAVA_FINALIZER_LITERAL
If the meaning of 'JAVA FINALIZER' literal object isn't clear, there really should be more of a description here...
JAVA_FINALIZER| Field Detail |
|---|
public static final int JAVA_NATIVE
JAVA_NATIVE_LITERAL,
Constant Field Valuespublic static final int JAVA_SYNCHRONIZED
JAVA_SYNCHRONIZED_LITERAL,
Constant Field Valuespublic static final int JAVA_PUBLIC
JAVA_PUBLIC_LITERAL,
Constant Field Valuespublic static final int JAVA_PRIVATE
JAVA_PRIVATE_LITERAL,
Constant Field Valuespublic static final int JAVA_PROTECTED
JAVA_PROTECTED_LITERAL,
Constant Field Valuespublic static final int JAVA_DEFAULT_VISIBILITY
JAVA_DEFAULT_VISIBILITY_LITERAL,
Constant Field Valuespublic static final int JAVA_STATIC
JAVA_STATIC_LITERAL,
Constant Field Valuespublic static final int JAVA_CONSTRUCTOR
JAVA_CONSTRUCTOR_LITERAL,
Constant Field Valuespublic static final int JAVA_ABSTRACT
JAVA_ABSTRACT_LITERAL,
Constant Field Valuespublic static final int JAVA_FINALIZER
JAVA_FINALIZER_LITERAL,
Constant Field Valuespublic static final java.util.List<TRCMethodProperties> VALUES
| Method Detail |
|---|
public static final TRCMethodProperties[] values()
for(TRCMethodProperties c : TRCMethodProperties.values())
System.out.println(c);
public static TRCMethodProperties 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 namepublic static TRCMethodProperties get(java.lang.String literal)
public static TRCMethodProperties getByName(java.lang.String name)
public static TRCMethodProperties get(int value)
public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String toString()
toString in class java.lang.Enum<TRCMethodProperties>public static java.lang.String getString(java.lang.String key)
public static TRCMethodProperties getByLabel(java.lang.String label)
public java.lang.String getLabel()
|
TPTP 4.6.0 Platform Project Public API Specification |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||