public static enum ArrayType.ArrayForm extends java.lang.Enum<ArrayType.ArrayForm>
| Enum Constant and Description |
|---|
ALTERNATIVE
an alternative "Alt"-Array
|
ALTERNATIVE_TEXT
an alternative text array, where each item is the same string in a different translation
|
ORDERED
an ordered "Seq"-Array
|
UNORDERED
an unordered "Bag"-Array
|
| Modifier and Type | Method and Description |
|---|---|
static ArrayType.ArrayForm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArrayType.ArrayForm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayType.ArrayForm UNORDERED
public static final ArrayType.ArrayForm ORDERED
public static final ArrayType.ArrayForm ALTERNATIVE
public static final ArrayType.ArrayForm ALTERNATIVE_TEXT
public static ArrayType.ArrayForm[] values()
for (ArrayType.ArrayForm c : ArrayType.ArrayForm.values()) System.out.println(c);
public static ArrayType.ArrayForm 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 namejava.lang.NullPointerException - if the argument is null"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"