public enum DefaultStringLookup extends Enum<DefaultStringLookup>
StringLookup
objects available through StringLookupFactory
.
This enum was adapted from Apache Commons Configuration 2.4-SNAPSHOT.
StringLookupFactory
,
StringLookup
Enum Constant and Description |
---|
BASE64_DECODER
The lookup for Base64 decoding.
|
BASE64_ENCODER
The lookup for Base64 decoding.
|
CONST
The lookup for constants.
|
DATE
The lookup for dates.
|
ENVIRONMENT
The lookup for environment properties.
|
FILE
The lookup for files.
|
JAVA
The lookup for Java platform information.
|
LOCAL_HOST
The lookup for localhost information.
|
PROPERTIES
The lookup for properties.
|
RESOURCE_BUNDLE
The lookup for resource bundles.
|
SCRIPT
The lookup for scripts.
|
SYSTEM_PROPERTIES
The lookup for system properties.
|
URL
The lookup for URLs.
|
URL_DECODER
The lookup for URL decoding.
|
URL_ENCODER
The lookup for URL decoding.
|
XML
The lookup for URL decoding.
|
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 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 StringLookup getStringLookup()
StringLookup
instance of this kind.StringLookup
objectpublic String getKey()
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.