Package org.apache.juneau.httppart
Class Constants
java.lang.Object
org.apache.juneau.httppart.Constants
HTTP-Part constants.
See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Comma-separated values (e.g.static final String
Corresponds to multiple parameter instances instead of multiple values for a single instance (e.g.static final String
Pipe-separated values (e.g.static final String
Space-separated values (e.g.static final String
Tab-separated values (e.g.static final String
UON notation (e.g.static final String
Hexadecimal encoded octets (e.g.static final String
Spaced-separated hexadecimal encoded octets (e.g.static final String
BASE-64 encoded characters.static final String
An RFC3339 full-date.static final String
An RFC3339 date-time.static final String
64-bit floating point number.static final String
32-bit floating point number.static final String
Signed 32 bits.static final String
Signed 64 bits.static final String
Used to hint UIs the input needs to be obscured.static final String
UON notation (e.g.static final String
Array or collection.static final String
Boolean.static final String
File.static final String
Decimal number.static final String
Floating point number.static final String
Map or bean.static final String
String. -
Constructor Summary
-
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()
-