Package org.apache.juneau.httppart
Class Constants
java.lang.Object
org.apache.juneau.httppart.Constants
HTTP-Part constants.
See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringComma-separated values (e.g.static final StringCorresponds to multiple parameter instances instead of multiple values for a single instance (e.g.static final StringPipe-separated values (e.g.static final StringSpace-separated values (e.g.static final StringTab-separated values (e.g.static final StringUON notation (e.g.static final StringHexadecimal encoded octets (e.g.static final StringSpaced-separated hexadecimal encoded octets (e.g.static final StringBASE-64 encoded characters.static final StringAn RFC3339 full-date.static final StringAn RFC3339 date-time.static final String64-bit floating point number.static final String32-bit floating point number.static final StringSigned 32 bits.static final StringSigned 64 bits.static final StringUsed to hint UIs the input needs to be obscured.static final StringUON notation (e.g.static final StringArray or collection.static final StringBoolean.static final StringFile.static final StringDecimal number.static final StringFloating point number.static final StringMap or bean.static final StringString. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
CF_CSV
Comma-separated values (e.g."foo,bar" ).- See Also:
-
CF_SSV
Space-separated values (e.g."foo bar" ).- See Also:
-
CF_TSV
Tab-separated values (e.g."foo\tbar" ).- See Also:
-
CF_PIPES
Pipe-separated values (e.g."foo|bar" ).- See Also:
-
CF_MULTI
Corresponds to multiple parameter instances instead of multiple values for a single instance (e.g."foo=bar&foo=baz" ).- See Also:
-
CF_UON
UON notation (e.g."@(foo,bar)" ).- See Also:
-
TYPE_STRING
String.- See Also:
-
TYPE_NUMBER
Floating point number.- See Also:
-
TYPE_INTEGER
Decimal number.- See Also:
-
TYPE_BOOLEAN
Boolean.- See Also:
-
TYPE_ARRAY
Array or collection.- See Also:
-
TYPE_OBJECT
Map or bean.- See Also:
-
TYPE_FILE
File.- See Also:
-
FORMAT_INT32
Signed 32 bits.- See Also:
-
FORMAT_INT64
Signed 64 bits.- See Also:
-
FORMAT_FLOAT
32-bit floating point number.- See Also:
-
FORMAT_DOUBLE
64-bit floating point number.- See Also:
-
FORMAT_BYTE
BASE-64 encoded characters.- See Also:
-
FORMAT_BINARY
Hexadecimal encoded octets (e.g."00FF" ).- See Also:
-
FORMAT_BINARY_SPACED
Spaced-separated hexadecimal encoded octets (e.g."00 FF" ).- See Also:
-
FORMAT_DATE
An RFC3339 full-date.- See Also:
-
FORMAT_DATE_TIME
An RFC3339 date-time.- See Also:
-
FORMAT_PASSWORD
Used to hint UIs the input needs to be obscured.- See Also:
-
FORMAT_UON
UON notation (e.g."(foo=bar,baz=@(qux,123))" ).- See Also:
-
-
Constructor Details
-
Constants
public Constants()
-