public enum InterpreterNameLookupCaseSensitivity extends Enum<InterpreterNameLookupCaseSensitivity>
Java class for InterpreterNameLookupCaseSensitivity.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="InterpreterNameLookupCaseSensitivity"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="DEFAULT"/> <enumeration value="ALWAYS"/> <enumeration value="WHEN_QUOTED"/> <enumeration value="NEVER"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALWAYS |
DEFAULT |
NEVER |
WHEN_QUOTED |
Modifier and Type | Method and Description |
---|---|
static InterpreterNameLookupCaseSensitivity |
fromValue(String v) |
String |
value() |
static InterpreterNameLookupCaseSensitivity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpreterNameLookupCaseSensitivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpreterNameLookupCaseSensitivity DEFAULT
public static final InterpreterNameLookupCaseSensitivity ALWAYS
public static final InterpreterNameLookupCaseSensitivity WHEN_QUOTED
public static final InterpreterNameLookupCaseSensitivity NEVER
public static InterpreterNameLookupCaseSensitivity[] values()
for (InterpreterNameLookupCaseSensitivity c : InterpreterNameLookupCaseSensitivity.values()) System.out.println(c);
public static InterpreterNameLookupCaseSensitivity 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 String value()
public static InterpreterNameLookupCaseSensitivity fromValue(String v)
Copyright © 2021. All rights reserved.