Package com.illumon.iris.importers
Enum Class PartitioningFormulaHelpers.QueryScopeParams
java.lang.Object
java.lang.Enum<PartitioningFormulaHelpers.QueryScopeParams>
com.illumon.iris.importers.PartitioningFormulaHelpers.QueryScopeParams
- All Implemented Interfaces:
Serializable
,Comparable<PartitioningFormulaHelpers.QueryScopeParams>
,java.lang.constant.Constable
- Enclosing class:
- PartitioningFormulaHelpers
public static enum PartitioningFormulaHelpers.QueryScopeParams
extends Enum<PartitioningFormulaHelpers.QueryScopeParams>
Specialized enum used in conjunction with
PartitioningFormulaHelpers
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic void
setup
(String namespace, String tableName, String partitioningColumnValue, String[] writableInternalPartitions) Setup values for all suitable query scope param names in the enum.Returns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
__WRITABLE_PARTITIONS__
-
__NUM_WRITABLE_PARTITIONS__
-
__NAMESPACE__
-
__TABLE_NAME__
-
__NS_TN__
-
__PARTITIONING_COLUMN_VALUE__
-
__DAY_OF_YEAR__
-
__PARTITION_AUTOBALANCE_SINGLE__
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
setup
public static void setup(@NotNull String namespace, @NotNull String tableName, @NotNull String partitioningColumnValue, @NotNull String[] writableInternalPartitions) Setup values for all suitable query scope param names in the enum.- Parameters:
namespace
- The namespacetableName
- The table namepartitioningColumnValue
- The partitioning column valuewritableInternalPartitions
- The writable internal partition names
-