pt.compiler.parser.ast.type
Enum PrimitiveType.Primitive
java.lang.Object
java.lang.Enum<PrimitiveType.Primitive>
pt.compiler.parser.ast.type.PrimitiveType.Primitive
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PrimitiveType.Primitive>
- Enclosing class:
- PrimitiveType
public static enum PrimitiveType.Primitive
- extends java.lang.Enum<PrimitiveType.Primitive>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Boolean
public static final PrimitiveType.Primitive Boolean
Char
public static final PrimitiveType.Primitive Char
Byte
public static final PrimitiveType.Primitive Byte
Short
public static final PrimitiveType.Primitive Short
Integer
public static final PrimitiveType.Primitive Integer
Long
public static final PrimitiveType.Primitive Long
Float
public static final PrimitiveType.Primitive Float
Double
public static final PrimitiveType.Primitive Double
values
public static PrimitiveType.Primitive[] 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 (PrimitiveType.Primitive c : PrimitiveType.Primitive.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PrimitiveType.Primitive 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