Enum PhysicalTable.Type
- java.lang.Object
-
- java.lang.Enum<PhysicalTable.Type>
-
- software.amazon.awssdk.services.quicksight.model.PhysicalTable.Type
-
- All Implemented Interfaces:
Serializable,Comparable<PhysicalTable.Type>
- Enclosing class:
- PhysicalTable
public static enum PhysicalTable.Type extends Enum<PhysicalTable.Type>
- See Also:
PhysicalTable.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM_SQLRELATIONAL_TABLES3_SOURCEUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PhysicalTable.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static PhysicalTable.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RELATIONAL_TABLE
public static final PhysicalTable.Type RELATIONAL_TABLE
-
CUSTOM_SQL
public static final PhysicalTable.Type CUSTOM_SQL
-
S3_SOURCE
public static final PhysicalTable.Type S3_SOURCE
-
UNKNOWN_TO_SDK_VERSION
public static final PhysicalTable.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static PhysicalTable.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 (PhysicalTable.Type c : PhysicalTable.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 PhysicalTable.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
-
-