Package org.apache.iceberg.view
Enum CommonViewConstants.ViewVersionSummaryConstants
- java.lang.Object
-
- java.lang.Enum<CommonViewConstants.ViewVersionSummaryConstants>
-
- org.apache.iceberg.view.CommonViewConstants.ViewVersionSummaryConstants
-
- All Implemented Interfaces:
Serializable,Comparable<CommonViewConstants.ViewVersionSummaryConstants>
- Enclosing class:
- CommonViewConstants
protected static enum CommonViewConstants.ViewVersionSummaryConstants extends Enum<CommonViewConstants.ViewVersionSummaryConstants>
All the properties except 'common_view' are stored in the View's Version Summary. 'operation' is supplied by the library and hence does not need to appear in the enum below. If you add a new constant that is specific to a version of the view, make sure to add it to the enum below.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description engine_versiongenie_id
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommonViewConstants.ViewVersionSummaryConstantsvalueOf(String name)Returns the enum constant of this type with the specified name.static CommonViewConstants.ViewVersionSummaryConstants[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
engine_version
public static final CommonViewConstants.ViewVersionSummaryConstants engine_version
-
genie_id
public static final CommonViewConstants.ViewVersionSummaryConstants genie_id
-
-
Method Detail
-
values
public static CommonViewConstants.ViewVersionSummaryConstants[] 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 (CommonViewConstants.ViewVersionSummaryConstants c : CommonViewConstants.ViewVersionSummaryConstants.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommonViewConstants.ViewVersionSummaryConstants 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
-
-