Enum AbstractColumn.Type
- java.lang.Object
-
- java.lang.Enum<AbstractColumn.Type>
-
- com.oracle.bmc.loganalytics.model.AbstractColumn.Type
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<AbstractColumn.Type>
- Enclosing class:
- AbstractColumn
public static enum AbstractColumn.Type extends Enum<AbstractColumn.Type> implements BmcEnum
Column classification when column requires special designation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ChartColumn
ChartDataColumn
ClassifyColumn
Column
TableColumn
TimeClusterColumn
TimeClusterDataColumn
TimeColumn
TimeStatsColumn
TimeStatsDataColumn
TrendColumn
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AbstractColumn.Type
create(String key)
String
getValue()
static AbstractColumn.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractColumn.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Column
public static final AbstractColumn.Type Column
-
ChartColumn
public static final AbstractColumn.Type ChartColumn
-
ChartDataColumn
public static final AbstractColumn.Type ChartDataColumn
-
TimeStatsColumn
public static final AbstractColumn.Type TimeStatsColumn
-
TimeStatsDataColumn
public static final AbstractColumn.Type TimeStatsDataColumn
-
TimeClusterColumn
public static final AbstractColumn.Type TimeClusterColumn
-
TimeClusterDataColumn
public static final AbstractColumn.Type TimeClusterDataColumn
-
TableColumn
public static final AbstractColumn.Type TableColumn
-
TimeColumn
public static final AbstractColumn.Type TimeColumn
-
TrendColumn
public static final AbstractColumn.Type TrendColumn
-
ClassifyColumn
public static final AbstractColumn.Type ClassifyColumn
-
UnknownEnumValue
public static final AbstractColumn.Type UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static AbstractColumn.Type[] 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 (AbstractColumn.Type c : AbstractColumn.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractColumn.Type 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
-
create
public static AbstractColumn.Type create(String key)
-
-