public enum LiveViewTableCapability extends java.lang.Enum<LiveViewTableCapability>
Since this feature is known to servers only since 1.4, older servers will have capabilities reported to directly by this client layer. In particular, TopN and Time Window queries did not exist, and are thus never reported for any table for servers older than 1.4.
Enum Constant and Description |
---|
AGGREGATE_QUERIES
Whether or not this table supports Aggregate Queries.
|
ALERT_RULES
Whether or not this table supports alert rules configured against it.
|
CALCULATED_COLUMNS |
CAN_BE_EXTERNALLY_HOSTED |
CONTINUOUS
Whether or not the Table supports Continuous query updates
|
DELETE
Whether or not this table supports delete operations.
|
GROUP_BY_EXPRESSIONS |
HAVING_QUERIES |
PIVOT_QUERIES |
PUBLISH
Whether or not this table can be published to via a TablePublisher
|
SNAPSHOT
Whether or not the Table supports Snapshot only queries
|
TIME_DELAYED_QUERIES
Whether or not this table supports Time-delayed queries (i.e.
|
TIME_WINDOWED_QUERIES
Whether or not this table supports Time-windowed queries.
|
TOP_N_QUERIES
Whether or not this table supports TopN queries.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getReadable() |
java.lang.String |
toString() |
static LiveViewTableCapability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiveViewTableCapability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiveViewTableCapability SNAPSHOT
public static final LiveViewTableCapability CONTINUOUS
public static final LiveViewTableCapability ALERT_RULES
public static final LiveViewTableCapability DELETE
public static final LiveViewTableCapability TOP_N_QUERIES
public static final LiveViewTableCapability TIME_WINDOWED_QUERIES
public static final LiveViewTableCapability TIME_DELAYED_QUERIES
public static final LiveViewTableCapability AGGREGATE_QUERIES
public static final LiveViewTableCapability PUBLISH
public static final LiveViewTableCapability CAN_BE_EXTERNALLY_HOSTED
public static final LiveViewTableCapability PIVOT_QUERIES
public static final LiveViewTableCapability CALCULATED_COLUMNS
public static final LiveViewTableCapability HAVING_QUERIES
public static final LiveViewTableCapability GROUP_BY_EXPRESSIONS
public static LiveViewTableCapability[] values()
for (LiveViewTableCapability c : LiveViewTableCapability.values()) System.out.println(c);
public static LiveViewTableCapability valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getReadable()
public java.lang.String toString()
toString
in class java.lang.Enum<LiveViewTableCapability>