public static enum Arrays.ExpansionOption extends Enum<Arrays.ExpansionOption>
| Enum Constant and Description |
|---|
INITIALIZE |
NONE |
PRESERVE |
| Modifier and Type | Method and Description |
|---|---|
static Arrays.ExpansionOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Arrays.ExpansionOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Arrays.ExpansionOption PRESERVE
public static final Arrays.ExpansionOption INITIALIZE
public static final Arrays.ExpansionOption NONE
public static Arrays.ExpansionOption[] values()
for (Arrays.ExpansionOption c : Arrays.ExpansionOption.values()) System.out.println(c);
public static Arrays.ExpansionOption 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 © 2012–2022. All rights reserved.