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