public static enum UnmappableOutput.ErrorCode extends Enum<UnmappableOutput.ErrorCode>
UnmappableOutput
.Enum Constant and Description |
---|
CONFLICT_SEQUENCE
Output sequence conflicts with another sequence.
|
EXTRA_EMPTY_FIELD
An extra empty field was generated.
|
EXTRA_FIELD_SEPARATOR
An extra field separator was occurred in field contents.
|
EXTRA_RECORD_SEPARATOR
An extra record separator was occurred in field contents.
|
LOST_FIELD_SEPARATOR
The trailing field separator was lost.
|
LOST_RECORD_SEPARATOR
The trailing record separator was lost.
|
RESTRICTED_SEQUENCE
The output sequence is restricted.
|
UNDEFINED_NULL_SEQUENCE
NULL format was not defined. |
Modifier and Type | Method and Description |
---|---|
static UnmappableOutput.ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnmappableOutput.ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnmappableOutput.ErrorCode EXTRA_EMPTY_FIELD
public static final UnmappableOutput.ErrorCode EXTRA_FIELD_SEPARATOR
public static final UnmappableOutput.ErrorCode EXTRA_RECORD_SEPARATOR
public static final UnmappableOutput.ErrorCode LOST_FIELD_SEPARATOR
public static final UnmappableOutput.ErrorCode LOST_RECORD_SEPARATOR
public static final UnmappableOutput.ErrorCode UNDEFINED_NULL_SEQUENCE
NULL
format was not defined.public static final UnmappableOutput.ErrorCode CONFLICT_SEQUENCE
public static final UnmappableOutput.ErrorCode RESTRICTED_SEQUENCE
public static UnmappableOutput.ErrorCode[] values()
for (UnmappableOutput.ErrorCode c : UnmappableOutput.ErrorCode.values()) System.out.println(c);
public static UnmappableOutput.ErrorCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.