|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<HttpSender.Type>
org.acra.sender.HttpSender.Type
public static enum HttpSender.Type
Type of report data encoding, currently supports Html Form encoding and JSON.
Enum Constant Summary | |
---|---|
FORM
Send data as a www form encoded list of key/values. |
|
JSON
Send data as a structured JSON tree. |
Method Summary | |
---|---|
abstract String |
getContentType()
|
static HttpSender.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static HttpSender.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final HttpSender.Type FORM
://www.w3.org/TR/html401/interact/forms.html#h-17.13.4
public static final HttpSender.Type JSON
Method Detail |
---|
public static HttpSender.Type[] values()
for (HttpSender.Type c : HttpSender.Type.values()) System.out.println(c);
public static HttpSender.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic abstract String getContentType()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |