Package aQute.libg.dtos
Enum DTOs.Reason
- java.lang.Object
-
- java.lang.Enum<DTOs.Reason>
-
- aQute.libg.dtos.DTOs.Reason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DTOs.Reason>
- Enclosing interface:
- DTOs
public static enum DTOs.Reason extends java.lang.Enum<DTOs.Reason>
The reason for a difference.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDED
DIFFERENT_TYPES
INVALID_KEY
KEYS
NO_STRING_MAP
REMOVED
SIZE
UNEQUAL
-
Constructor Summary
Constructors Modifier Constructor Description private
Reason()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DTOs.Reason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DTOs.Reason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNEQUAL
public static final DTOs.Reason UNEQUAL
-
REMOVED
public static final DTOs.Reason REMOVED
-
ADDED
public static final DTOs.Reason ADDED
-
DIFFERENT_TYPES
public static final DTOs.Reason DIFFERENT_TYPES
-
SIZE
public static final DTOs.Reason SIZE
-
KEYS
public static final DTOs.Reason KEYS
-
NO_STRING_MAP
public static final DTOs.Reason NO_STRING_MAP
-
INVALID_KEY
public static final DTOs.Reason INVALID_KEY
-
-
Method Detail
-
values
public static DTOs.Reason[] 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 (DTOs.Reason c : DTOs.Reason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DTOs.Reason 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
-
-