public enum AS3Type extends Enum<AS3Type>
| Enum Constant and Description |
|---|
ANY |
ARRAY |
BOOLEAN |
DATE |
INT |
NUMBER |
REG_EXP |
STRING |
UINT |
VOID |
| Modifier and Type | Field and Description |
|---|---|
String |
defaultValue |
String |
name |
| Modifier and Type | Method and Description |
|---|---|
static String |
getDefaultValue(String typeName) |
String |
toString() |
static AS3Type |
typeByName(String name) |
static AS3Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AS3Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AS3Type BOOLEAN
public static final AS3Type NUMBER
public static final AS3Type INT
public static final AS3Type UINT
public static final AS3Type STRING
public static final AS3Type ARRAY
public static final AS3Type REG_EXP
public static final AS3Type DATE
public static final AS3Type ANY
public static final AS3Type VOID
public static AS3Type[] values()
for (AS3Type c : AS3Type.values()) System.out.println(c);
public static AS3Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2002–2015 CoreMedia AG. All rights reserved.