public static enum JpaProvider.ConstraintType extends Enum<JpaProvider.ConstraintType>
Enum Constant and Description |
---|
NONE
No constraint.
|
ON
Constraint in the ON clause.
|
WHERE
Constraint in the WHERE clause.
|
Modifier and Type | Method and Description |
---|---|
static JpaProvider.ConstraintType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JpaProvider.ConstraintType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JpaProvider.ConstraintType NONE
public static final JpaProvider.ConstraintType ON
public static final JpaProvider.ConstraintType WHERE
public static JpaProvider.ConstraintType[] values()
for (JpaProvider.ConstraintType c : JpaProvider.ConstraintType.values()) System.out.println(c);
public static JpaProvider.ConstraintType 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 © 2014–2018 Blazebit. All rights reserved.