public enum Dimension extends java.lang.Enum<Dimension>
Response.getDimensions()
Enum Constant and Description |
---|
AUTHORIZATION |
CHARACTER_SET |
CLIENT_ADDRESS |
CLIENT_AGENT |
ENCODING |
LANGUAGE |
MEDIA_TYPE |
ORIGIN |
TIME |
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
static Dimension |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dimension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dimension AUTHORIZATION
public static final Dimension CHARACTER_SET
public static final Dimension CLIENT_ADDRESS
public static final Dimension CLIENT_AGENT
public static final Dimension UNSPECIFIED
public static final Dimension ENCODING
public static final Dimension LANGUAGE
public static final Dimension MEDIA_TYPE
public static final Dimension TIME
public static final Dimension ORIGIN
public static Dimension[] values()
for (Dimension c : Dimension.values()) System.out.println(c);
public static Dimension 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 nullCopyright © 2005-2024 Restlet.