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