public enum HowToUseSelectors extends java.lang.Enum<HowToUseSelectors>
| Enum Constant and Description | 
|---|
| BUILD_CHAINED | 
| USE_ANY | 
| USE_ONE | 
| Modifier and Type | Method and Description | 
|---|---|
| static HowToUseSelectors | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static HowToUseSelectors[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final HowToUseSelectors USE_ONE
public static final HowToUseSelectors BUILD_CHAINED
public static final HowToUseSelectors USE_ANY
public static HowToUseSelectors[] values()
for (HowToUseSelectors c : HowToUseSelectors.values()) System.out.println(c);
public static HowToUseSelectors 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