TPTP 4.6.0 Platform Project
Internal API Specification

org.eclipse.hyades.models.internal.probekit
Enum FragmentType

java.lang.Object
  extended by java.lang.Enum<FragmentType>
      extended by org.eclipse.hyades.models.internal.probekit.FragmentType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FragmentType>, org.eclipse.emf.common.util.Enumerator

public enum FragmentType
extends java.lang.Enum<FragmentType>
implements org.eclipse.emf.common.util.Enumerator

A representation of the literals of the enumeration 'Fragment Type', and utility methods for working with them.

See Also:
ProbekitPackage.getFragmentType()
Generated
[EMF] Model
extendedMetaData="name='fragmentType'"

Enum Constant Summary
AFTER_CALL_LITERAL
          The 'After Call' literal object
BEFORE_CALL_LITERAL
          The 'Before Call' literal object
CATCH_LITERAL
          The 'Catch' literal object
ENTRY_LITERAL
          The 'Entry' literal object
EXECUTABLE_UNIT_LITERAL
          The 'Executable Unit' literal object
EXIT_LITERAL
          The 'Exit' literal object
STATIC_INITIALIZER_LITERAL
          The 'Static Initializer' literal object
 
Field Summary
static int AFTER_CALL
          The 'After Call' literal value
static int BEFORE_CALL
          The 'Before Call' literal value
static int CATCH
          The 'Catch' literal value
static int ENTRY
          The 'Entry' literal value
static int EXECUTABLE_UNIT
          The 'Executable Unit' literal value
static int EXIT
          The 'Exit' literal value
static int STATIC_INITIALIZER
          The 'Static Initializer' literal value
static java.util.List<FragmentType> VALUES
          A public read-only list of all the 'Fragment Type' enumerators
 
Method Summary
static FragmentType get(int value)
          Returns the 'Fragment Type' literal with the specified integer value
static FragmentType get(java.lang.String literal)
          Returns the 'Fragment Type' literal with the specified literal value
static FragmentType getByName(java.lang.String name)
          Returns the 'Fragment 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 FragmentType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FragmentType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ENTRY_LITERAL

public static final FragmentType ENTRY_LITERAL
The 'Entry' literal object.

If the meaning of 'Entry' literal object isn't clear, there really should be more of a description here...

See Also:
ENTRY
Generated
[EMF] Ordered

CATCH_LITERAL

public static final FragmentType CATCH_LITERAL
The 'Catch' literal object.

If the meaning of 'Catch' literal object isn't clear, there really should be more of a description here...

See Also:
CATCH
Generated
[EMF] Ordered

EXIT_LITERAL

public static final FragmentType EXIT_LITERAL
The 'Exit' literal object.

If the meaning of 'Exit' literal object isn't clear, there really should be more of a description here...

See Also:
EXIT
Generated
[EMF] Ordered

BEFORE_CALL_LITERAL

public static final FragmentType BEFORE_CALL_LITERAL
The 'Before Call' literal object.

If the meaning of 'Before Call' literal object isn't clear, there really should be more of a description here...

See Also:
BEFORE_CALL
Generated
[EMF] Ordered

AFTER_CALL_LITERAL

public static final FragmentType AFTER_CALL_LITERAL
The 'After Call' literal object.

If the meaning of 'After Call' literal object isn't clear, there really should be more of a description here...

See Also:
AFTER_CALL
Generated
[EMF] Ordered

STATIC_INITIALIZER_LITERAL

public static final FragmentType STATIC_INITIALIZER_LITERAL
The 'Static Initializer' literal object.

If the meaning of 'Static Initializer' literal object isn't clear, there really should be more of a description here...

See Also:
STATIC_INITIALIZER
Generated
[EMF] Ordered

EXECUTABLE_UNIT_LITERAL

public static final FragmentType EXECUTABLE_UNIT_LITERAL
The 'Executable Unit' literal object.

If the meaning of 'Executable Unit' literal object isn't clear, there really should be more of a description here...

See Also:
EXECUTABLE_UNIT
Generated
[EMF] Ordered
Field Detail

ENTRY

public static final int ENTRY
The 'Entry' literal value.

See Also:
ENTRY_LITERAL, Constant Field Values
Generated
[EMF] Model
name="entry"
[EMF] Ordered

CATCH

public static final int CATCH
The 'Catch' literal value.

See Also:
CATCH_LITERAL, Constant Field Values
Generated
[EMF] Model
name="catch"
[EMF] Ordered

EXIT

public static final int EXIT
The 'Exit' literal value.

See Also:
EXIT_LITERAL, Constant Field Values
Generated
[EMF] Model
name="exit"
[EMF] Ordered

BEFORE_CALL

public static final int BEFORE_CALL
The 'Before Call' literal value.

See Also:
BEFORE_CALL_LITERAL, Constant Field Values
Generated
[EMF] Model
name="beforeCall"
[EMF] Ordered

AFTER_CALL

public static final int AFTER_CALL
The 'After Call' literal value.

See Also:
AFTER_CALL_LITERAL, Constant Field Values
Generated
[EMF] Model
name="afterCall"
[EMF] Ordered

STATIC_INITIALIZER

public static final int STATIC_INITIALIZER
The 'Static Initializer' literal value.

See Also:
STATIC_INITIALIZER_LITERAL, Constant Field Values
Generated
[EMF] Model
name="staticInitializer"
[EMF] Ordered

EXECUTABLE_UNIT

public static final int EXECUTABLE_UNIT
The 'Executable Unit' literal value.

See Also:
EXECUTABLE_UNIT_LITERAL, Constant Field Values
Generated
[EMF] Model
name="executableUnit"
[EMF] Ordered

VALUES

public static final java.util.List<FragmentType> VALUES
A public read-only list of all the 'Fragment Type' enumerators.

Generated
Method Detail

values

public static final FragmentType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(FragmentType c : FragmentType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static FragmentType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

get

public static FragmentType get(java.lang.String literal)
Returns the 'Fragment Type' literal with the specified literal value.

Generated

getByName

public static FragmentType getByName(java.lang.String name)
Returns the 'Fragment Type' literal with the specified name.

Generated

get

public static FragmentType get(int value)
Returns the 'Fragment Type' literal with the specified integer value.

Generated

getValue

public int getValue()

Specified by:
getValue in interface org.eclipse.emf.common.util.Enumerator
Generated

getName

public java.lang.String getName()

Specified by:
getName in interface org.eclipse.emf.common.util.Enumerator
Generated

getLiteral

public java.lang.String getLiteral()

Specified by:
getLiteral in interface org.eclipse.emf.common.util.Enumerator
Generated

toString

public java.lang.String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<FragmentType>
Generated

TPTP 4.6.0 Platform Project
Internal API Specification