Enum JPAEdmReferentialConstraintRoleView.RoleType
- java.lang.Object
-
- java.lang.Enum<JPAEdmReferentialConstraintRoleView.RoleType>
-
- org.apache.olingo.odata2.jpa.processor.api.model.JPAEdmReferentialConstraintRoleView.RoleType
-
- All Implemented Interfaces:
Serializable,Comparable<JPAEdmReferentialConstraintRoleView.RoleType>
- Enclosing interface:
- JPAEdmReferentialConstraintRoleView
public static enum JPAEdmReferentialConstraintRoleView.RoleType extends Enum<JPAEdmReferentialConstraintRoleView.RoleType>
Two types of EDM roles of a referential constraint.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JPAEdmReferentialConstraintRoleView.RoleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static JPAEdmReferentialConstraintRoleView.RoleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRINCIPAL
public static final JPAEdmReferentialConstraintRoleView.RoleType PRINCIPAL
-
DEPENDENT
public static final JPAEdmReferentialConstraintRoleView.RoleType DEPENDENT
-
-
Method Detail
-
values
public static JPAEdmReferentialConstraintRoleView.RoleType[] 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 (JPAEdmReferentialConstraintRoleView.RoleType c : JPAEdmReferentialConstraintRoleView.RoleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JPAEdmReferentialConstraintRoleView.RoleType 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
-
-