Package org.eclipse.jetty.util
Enum MultiPartInputStreamParser.NonCompliance
- java.lang.Object
-
- java.lang.Enum<MultiPartInputStreamParser.NonCompliance>
-
- org.eclipse.jetty.util.MultiPartInputStreamParser.NonCompliance
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MultiPartInputStreamParser.NonCompliance>
- Enclosing class:
- MultiPartInputStreamParser
public static enum MultiPartInputStreamParser.NonCompliance extends java.lang.Enum<MultiPartInputStreamParser.NonCompliance>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASE64_TRANSFER_ENCODING
CR_LINE_TERMINATION
LF_LINE_TERMINATION
NO_CRLF_AFTER_PREAMBLE
QUOTED_PRINTABLE_TRANSFER_ENCODING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getURL()
static MultiPartInputStreamParser.NonCompliance
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MultiPartInputStreamParser.NonCompliance[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CR_LINE_TERMINATION
public static final MultiPartInputStreamParser.NonCompliance CR_LINE_TERMINATION
-
LF_LINE_TERMINATION
public static final MultiPartInputStreamParser.NonCompliance LF_LINE_TERMINATION
-
NO_CRLF_AFTER_PREAMBLE
public static final MultiPartInputStreamParser.NonCompliance NO_CRLF_AFTER_PREAMBLE
-
BASE64_TRANSFER_ENCODING
public static final MultiPartInputStreamParser.NonCompliance BASE64_TRANSFER_ENCODING
-
QUOTED_PRINTABLE_TRANSFER_ENCODING
public static final MultiPartInputStreamParser.NonCompliance QUOTED_PRINTABLE_TRANSFER_ENCODING
-
-
Method Detail
-
values
public static MultiPartInputStreamParser.NonCompliance[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MultiPartInputStreamParser.NonCompliance c : MultiPartInputStreamParser.NonCompliance.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultiPartInputStreamParser.NonCompliance valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getURL
public java.lang.String getURL()
-
-