Enum Class MultipartContent.IsFinished
java.lang.Object
java.lang.Enum<MultipartContent.IsFinished>
de.fraunhofer.iosb.ilt.frostserver.plugin.batchprocessing.multipart.MultipartContent.IsFinished
- All Implemented Interfaces:
Serializable,Comparable<MultipartContent.IsFinished>,Constable
- Enclosing interface:
- MultipartContent
Indicates the parse-state of the Content.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe Content does not expect any more lines.The content expects more lines.The content does not know. -
Method Summary
Modifier and TypeMethodDescriptionstatic MultipartContent.IsFinishedReturns the enum constant of this class with the specified name.static MultipartContent.IsFinished[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FINISHED
The Content does not expect any more lines. -
UNKNOWN
The content does not know. -
UNFINISHED
The content expects more lines.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException- if the argument is null
-