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