public enum RequestReplacementType extends Enum<RequestReplacementType>
| Enum Constant and Description |
|---|
NO_REPLACEMENT
The no variable replacement.
|
TARGET_HOST_SPECIFIC_VAR_REPLACEMENT
The target host specific variable replacement.
|
UNIFORM_VAR_REPLACEMENT
The uniform variable replacement.
|
| Modifier and Type | Method and Description |
|---|---|
static RequestReplacementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestReplacementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestReplacementType NO_REPLACEMENT
public static final RequestReplacementType UNIFORM_VAR_REPLACEMENT
public static final RequestReplacementType TARGET_HOST_SPECIFIC_VAR_REPLACEMENT
public static RequestReplacementType[] values()
for (RequestReplacementType c : RequestReplacementType.values()) System.out.println(c);
public static RequestReplacementType 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 © 2015–2016 eBay. All rights reserved.