ujf.verimag.bip.Core.PortExpressions
Enum ACTypingKind

java.lang.Object
  extended by java.lang.Enum<ACTypingKind>
      extended by ujf.verimag.bip.Core.PortExpressions.ACTypingKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ACTypingKind>

public enum ACTypingKind
extends java.lang.Enum<ACTypingKind>

A representation of the literals of the enumeration 'AC Typing Kind', and utility methods for working with them.

See Also:
PortExpressionsPackage.getACTypingKind()

Enum Constant Summary
SYNC
          The 'Sync' literal object.
TRIG
          The 'Trig' literal object.
 
Field Summary
static int SYNC_VALUE
          The 'Sync' literal value.
static int TRIG_VALUE
          The 'Trig' literal value.
static java.util.List<ACTypingKind> VALUES
          A public read-only list of all the 'AC Typing Kind' enumerators.
 
Method Summary
static ACTypingKind get(int value)
          Returns the 'AC Typing Kind' literal with the specified integer value.
static ACTypingKind get(java.lang.String literal)
          Returns the 'AC Typing Kind' literal with the specified literal value.
static ACTypingKind getByName(java.lang.String name)
          Returns the 'AC Typing Kind' 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 ACTypingKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ACTypingKind[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SYNC

public static final ACTypingKind SYNC
The 'Sync' literal object.

See Also:
SYNC_VALUE

TRIG

public static final ACTypingKind TRIG
The 'Trig' literal object.

See Also:
TRIG_VALUE
Field Detail

SYNC_VALUE

public static final int SYNC_VALUE
The 'Sync' literal value.

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

See Also:
SYNC, Constant Field Values

TRIG_VALUE

public static final int TRIG_VALUE
The 'Trig' literal value.

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

See Also:
TRIG, Constant Field Values

VALUES

public static final java.util.List<ACTypingKind> VALUES
A public read-only list of all the 'AC Typing Kind' enumerators.

Method Detail

values

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

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

valueOf

public static ACTypingKind 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
java.lang.NullPointerException - if the argument is null

get

public static ACTypingKind get(java.lang.String literal)
Returns the 'AC Typing Kind' literal with the specified literal value.


getByName

public static ACTypingKind getByName(java.lang.String name)
Returns the 'AC Typing Kind' literal with the specified name.


get

public static ACTypingKind get(int value)
Returns the 'AC Typing Kind' literal with the specified integer value.


getValue

public int getValue()


getName

public java.lang.String getName()


getLiteral

public java.lang.String getLiteral()


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<ACTypingKind>