public enum HttpRequestParamEncode extends Enum<HttpRequestParamEncode>
Enum Constant and Description |
---|
DOT_NOTATION
Example: `foo.bar.id`
|
JQUERY
Example: `foo[bar][id]`
|
Modifier and Type | Method and Description |
---|---|
protected abstract String |
_concat(String[] path,
int len) |
String |
concat(act.inject.param.ParamKey key) |
String |
concat(String[] path) |
static HttpRequestParamEncode |
next(HttpRequestParamEncode encode) |
static HttpRequestParamEncode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpRequestParamEncode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpRequestParamEncode JQUERY
public static final HttpRequestParamEncode DOT_NOTATION
public static HttpRequestParamEncode[] values()
for (HttpRequestParamEncode c : HttpRequestParamEncode.values()) System.out.println(c);
public static HttpRequestParamEncode 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 final String concat(act.inject.param.ParamKey key)
public static HttpRequestParamEncode next(HttpRequestParamEncode encode)
Copyright © 2014–2018 ActFramework. All rights reserved.