Enum DBColumnKind
- java.lang.Object
-
- java.lang.Enum<DBColumnKind>
-
- jetbrains.buildServer.serverSide.db.DBColumnKind
-
- All Implemented Interfaces:
Serializable
,Comparable<DBColumnKind>
public enum DBColumnKind extends Enum<DBColumnKind>
Kind of a column (in a database table).Classifies column kinds that required different processing algorithms.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DBColumnKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static DBColumnKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUMBER
public static final DBColumnKind NUMBER
-
BIT
public static final DBColumnKind BIT
-
STRING
public static final DBColumnKind STRING
-
DATETIME
public static final DBColumnKind DATETIME
-
BINARY
public static final DBColumnKind BINARY
-
CLOB
public static final DBColumnKind CLOB
-
BLOB
public static final DBColumnKind BLOB
-
UNKNOWN
public static final DBColumnKind UNKNOWN
-
-
Method Detail
-
values
public static DBColumnKind[] 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 (DBColumnKind c : DBColumnKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DBColumnKind 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
-
-