Enum TableKeyKind
- java.lang.Object
-
- java.lang.Enum<TableKeyKind>
-
- jetbrains.buildServer.serverSide.db.schema.TableKeyKind
-
- All Implemented Interfaces:
Serializable
,Comparable<TableKeyKind>
public enum TableKeyKind extends Enum<TableKeyKind>
Teable key kind.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TableKeyKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static TableKeyKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PK
public static final TableKeyKind PK
Primary key.
-
AK
public static final TableKeyKind AK
Alternative key.
-
IE
public static final TableKeyKind IE
Invertion entry (an ordinary index).
-
-
Method Detail
-
values
public static TableKeyKind[] 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 (TableKeyKind c : TableKeyKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableKeyKind 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
-
-