Package org.apache.juneau.httppart
Enum Class HttpPartCollectionFormat
- All Implemented Interfaces:
- Serializable,- Comparable<HttpPartCollectionFormat>,- Constable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionComma-separated values (e.g.Corresponds to multiple parameter instances instead of multiple values for a single instance (e.g.Not specified.Pipe-separated values (e.g.Space-separated values (e.g.Tab-separated values (e.g.UON collection notation (e.g.
- 
Method SummaryModifier and TypeMethodDescriptionstatic HttpPartCollectionFormatfromString(String value) Create from lowercase string.toString()static HttpPartCollectionFormatReturns the enum constant of this class with the specified name.static HttpPartCollectionFormat[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
CSVComma-separated values (e.g."foo,bar" ).
- 
SSVSpace-separated values (e.g."foo bar" ).
- 
TSVTab-separated values (e.g."foo\tbar" ).
- 
PIPESPipe-separated values (e.g."foo|bar" ).
- 
MULTICorresponds to multiple parameter instances instead of multiple values for a single instance (e.g."foo=bar&foo=baz" ).
- 
UONCUON collection notation (e.g."@(foo,bar)" ).
- 
NO_COLLECTION_FORMATNot specified.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
fromStringCreate from lowercase string.- Parameters:
- value- The enum name.
- Returns:
- The enum.
 
- 
toString- Overrides:
- toStringin class- Enum<HttpPartCollectionFormat>
 
 
-