Enum TestTableProvider.PushDownOptions
- java.lang.Object
-
- java.lang.Enum<TestTableProvider.PushDownOptions>
-
- org.apache.beam.sdk.extensions.sql.meta.provider.test.TestTableProvider.PushDownOptions
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TestTableProvider.PushDownOptions>
- Enclosing class:
- TestTableProvider
public static enum TestTableProvider.PushDownOptions extends java.lang.Enum<TestTableProvider.PushDownOptions>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TestTableProvider.PushDownOptionsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TestTableProvider.PushDownOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final TestTableProvider.PushDownOptions NONE
-
PROJECT
public static final TestTableProvider.PushDownOptions PROJECT
-
FILTER
public static final TestTableProvider.PushDownOptions FILTER
-
BOTH
public static final TestTableProvider.PushDownOptions BOTH
-
-
Method Detail
-
values
public static TestTableProvider.PushDownOptions[] 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 (TestTableProvider.PushDownOptions c : TestTableProvider.PushDownOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestTableProvider.PushDownOptions valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-