@Deprecated public static enum Util.InputType extends Enum<Util.InputType>
Enum Constant and Description |
---|
RAW_OR_PARAM
Deprecated.
Its a raw string and perhaps independent of context
|
URL_ONLY
Deprecated.
Only the URL aspect is represented by the input
|
URL_PARAM_VALUE_PAIRS
Deprecated.
A full string that contains URL and additional parameters in traditional ?x=y&x2=y2 format ;
or guaranteed Params (without URL, stripped off)
|
Modifier and Type | Method and Description |
---|---|
static Util.InputType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Util.InputType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Util.InputType RAW_OR_PARAM
public static final Util.InputType URL_ONLY
public static final Util.InputType URL_PARAM_VALUE_PAIRS
public static Util.InputType[] values()
for (Util.InputType c : Util.InputType.values()) System.out.println(c);
public static Util.InputType 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 © 2018. All rights reserved.