public enum LabelErrorReason extends Enum<LabelErrorReason>
Java class for LabelError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LabelError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DUPLICATE_NAME"/>
<enumeration value="INVALID_LABEL_NAME"/>
<enumeration value="INVALID_LABEL_TYPE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DUPLICATE_NAME
Label name must be unique.
|
INVALID_LABEL_NAME
Label names cannot be empty
|
INVALID_LABEL_TYPE
Invalid Label type.
|
UNKNOWN
Default error.
|
| Modifier and Type | Method and Description |
|---|---|
static LabelErrorReason |
fromValue(String v) |
String |
value() |
static LabelErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LabelErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelErrorReason DUPLICATE_NAME
public static final LabelErrorReason INVALID_LABEL_NAME
public static final LabelErrorReason INVALID_LABEL_TYPE
public static final LabelErrorReason UNKNOWN
public static LabelErrorReason[] values()
for (LabelErrorReason c : LabelErrorReason.values()) System.out.println(c);
public static LabelErrorReason 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 nullpublic String value()
public static LabelErrorReason fromValue(String v)
Copyright © 2023. All rights reserved.