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