Enum GroupsPerOperation.Operation
- java.lang.Object
-
- java.lang.Enum<GroupsPerOperation.Operation>
-
- org.hibernate.boot.beanvalidation.GroupsPerOperation.Operation
-
- All Implemented Interfaces:
Serializable
,Comparable<GroupsPerOperation.Operation>
- Enclosing class:
- GroupsPerOperation
public static enum GroupsPerOperation.Operation extends Enum<GroupsPerOperation.Operation>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getGroupPropertyName()
String
getJakartaGroupPropertyName()
String
getName()
static GroupsPerOperation.Operation
valueOf(String name)
Returns the enum constant of this type with the specified name.static GroupsPerOperation.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSERT
public static final GroupsPerOperation.Operation INSERT
-
UPDATE
public static final GroupsPerOperation.Operation UPDATE
-
DELETE
public static final GroupsPerOperation.Operation DELETE
-
DDL
public static final GroupsPerOperation.Operation DDL
-
-
Method Detail
-
values
public static GroupsPerOperation.Operation[] 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 (GroupsPerOperation.Operation c : GroupsPerOperation.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupsPerOperation.Operation valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
public String getName()
-
getGroupPropertyName
public String getGroupPropertyName()
-
getJakartaGroupPropertyName
public String getJakartaGroupPropertyName()
-
-