public enum DefaultStringLookup extends Enum<DefaultStringLookup>
StringLookup
objects available through StringLookupFactory
.
This enum was adapted and expanded from Apache Commons Configuration 2.4.
StringLookupFactory
,
StringLookup
Enum Constant and Description |
---|
BASE64_DECODER
The lookup for Base64 decoding using the key .
|
BASE64_ENCODER
The lookup for Base64 decoding using the key .
|
CONST
The lookup for constants using the key .
|
DATE
The lookup for dates using the key .
|
DNS
The lookup for DNS using the key .
|
ENVIRONMENT
The lookup for environment properties using the key .
|
FILE
The lookup for files using the key .
|
JAVA
The lookup for Java platform information using the key .
|
LOCAL_HOST
The lookup for localhost information using the key .
|
PROPERTIES
The lookup for properties using the key .
|
RESOURCE_BUNDLE
The lookup for resource bundles using the key .
|
SCRIPT
The lookup for scripts using the key .
|
SYSTEM_PROPERTIES
The lookup for system properties using the key .
|
URL
The lookup for URLs using the key .
|
URL_DECODER
The lookup for URL decoding using the key .
|
URL_ENCODER
The lookup for URL decoding using the key .
|
XML
The lookup for URL decoding using the key .
|
Modifier and Type | Method and Description |
---|---|
String |
getKey()
Returns the standard prefix for the lookup object of this kind.
|
StringLookup |
getStringLookup()
Returns the standard
StringLookup instance of this kind. |
static DefaultStringLookup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultStringLookup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultStringLookup BASE64_DECODER
public static final DefaultStringLookup BASE64_ENCODER
public static final DefaultStringLookup CONST
public static final DefaultStringLookup DATE
public static final DefaultStringLookup DNS
public static final DefaultStringLookup ENVIRONMENT
public static final DefaultStringLookup FILE
public static final DefaultStringLookup JAVA
public static final DefaultStringLookup LOCAL_HOST
public static final DefaultStringLookup PROPERTIES
public static final DefaultStringLookup RESOURCE_BUNDLE
public static final DefaultStringLookup SCRIPT
public static final DefaultStringLookup SYSTEM_PROPERTIES
public static final DefaultStringLookup URL
public static final DefaultStringLookup URL_DECODER
public static final DefaultStringLookup URL_ENCODER
public static final DefaultStringLookup XML
public static DefaultStringLookup[] values()
for (DefaultStringLookup c : DefaultStringLookup.values()) System.out.println(c);
public static DefaultStringLookup 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 getKey()
public StringLookup getStringLookup()
StringLookup
instance of this kind.StringLookup
objectCopyright © 2014–2020 The Apache Software Foundation. All rights reserved.