public enum HttpRequestParamEncode extends java.lang.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 java.lang.String |
_concat(java.lang.String[] path,
int len) |
java.lang.String |
concat(act.inject.param.ParamKey key) |
java.lang.String |
concat(java.lang.String[] path) |
static HttpRequestParamEncode |
next(HttpRequestParamEncode encode) |
static HttpRequestParamEncode |
valueOf(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic final java.lang.String concat(act.inject.param.ParamKey key)
public final java.lang.String concat(java.lang.String[] path)
protected abstract java.lang.String _concat(java.lang.String[] path, int len)
public static HttpRequestParamEncode next(HttpRequestParamEncode encode)
Copyright © 2014–2017 ActFramework. All rights reserved.