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