Package com.healthmarketscience.jackcess
Enum Relationship.JoinType
- java.lang.Object
-
- java.lang.Enum<Relationship.JoinType>
-
- com.healthmarketscience.jackcess.Relationship.JoinType
-
- All Implemented Interfaces:
Serializable,Comparable<Relationship.JoinType>
- Enclosing interface:
- Relationship
public static enum Relationship.JoinType extends Enum<Relationship.JoinType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INNERLEFT_OUTERRIGHT_OUTER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Relationship.JoinTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Relationship.JoinType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INNER
public static final Relationship.JoinType INNER
-
LEFT_OUTER
public static final Relationship.JoinType LEFT_OUTER
-
RIGHT_OUTER
public static final Relationship.JoinType RIGHT_OUTER
-
-
Method Detail
-
values
public static Relationship.JoinType[] 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 (Relationship.JoinType c : Relationship.JoinType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Relationship.JoinType 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
-
-