Enum AttributeNotSupportedException.AttributeError
- java.lang.Object
-
- java.lang.Enum<AttributeNotSupportedException.AttributeError>
-
- de.hybris.platform.servicelayer.exceptions.AttributeNotSupportedException.AttributeError
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AttributeNotSupportedException.AttributeError>
- Enclosing class:
- AttributeNotSupportedException
public static enum AttributeNotSupportedException.AttributeError extends java.lang.Enum<AttributeNotSupportedException.AttributeError>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTRIBUTE_DOES_NOT_EXISTINITIAL_ONLY_ATTRIBUTENOT_READABLE_ATTRIBUTENOT_WRITABLE_ATTRIBUTEPRIVATE_ATTRIBUTE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AttributeNotSupportedException.AttributeErrorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AttributeNotSupportedException.AttributeError[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATTRIBUTE_DOES_NOT_EXIST
public static final AttributeNotSupportedException.AttributeError ATTRIBUTE_DOES_NOT_EXIST
-
NOT_WRITABLE_ATTRIBUTE
public static final AttributeNotSupportedException.AttributeError NOT_WRITABLE_ATTRIBUTE
-
NOT_READABLE_ATTRIBUTE
public static final AttributeNotSupportedException.AttributeError NOT_READABLE_ATTRIBUTE
-
INITIAL_ONLY_ATTRIBUTE
public static final AttributeNotSupportedException.AttributeError INITIAL_ONLY_ATTRIBUTE
-
PRIVATE_ATTRIBUTE
public static final AttributeNotSupportedException.AttributeError PRIVATE_ATTRIBUTE
-
-
Method Detail
-
values
public static AttributeNotSupportedException.AttributeError[] 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 (AttributeNotSupportedException.AttributeError c : AttributeNotSupportedException.AttributeError.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeNotSupportedException.AttributeError 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
-
-