Package org.projectnessie.model
Enum Contents.Type
- java.lang.Object
-
- java.lang.Enum<Contents.Type>
-
- org.projectnessie.model.Contents.Type
-
- All Implemented Interfaces:
Serializable,Comparable<Contents.Type>
- Enclosing class:
- Contents
public static enum Contents.Type extends Enum<Contents.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELTA_LAKE_TABLEHIVE_DATABASEHIVE_TABLEICEBERG_TABLEUNKNOWNVIEW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Contents.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static Contents.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Contents.Type UNKNOWN
-
ICEBERG_TABLE
public static final Contents.Type ICEBERG_TABLE
-
DELTA_LAKE_TABLE
public static final Contents.Type DELTA_LAKE_TABLE
-
HIVE_TABLE
public static final Contents.Type HIVE_TABLE
-
HIVE_DATABASE
public static final Contents.Type HIVE_DATABASE
-
VIEW
public static final Contents.Type VIEW
-
-
Method Detail
-
values
public static Contents.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 (Contents.Type c : Contents.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 Contents.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
-
-