public enum LiveViewTableCapability extends 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
Whether or not calculated column queries can run against a particular table.
|
CAN_BE_EXTERNALLY_HOSTED
Whether or not this table can be externally hosted by a remote LiveView server.
|
CONTINUOUS
Whether or not the Table supports Continuous query updates.
|
DELETE
Whether or not this table supports delete operations.
|
GROUP_BY_EXPRESSIONS
Whether or not this table supports Group by expressions.
|
HAVING_QUERIES
Whether or not this table supports HAVING queries (i.e.
|
PIVOT_QUERIES
Whether or not Pivot queries can run against a particular table.
|
PUBLISH
Whether or not this table can be published to via a TablePublisher.
|
RELIABLE_PUBLISH
Whether or not this table supports reliable publishing.
|
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 (i.e.
|
Modifier and Type | Method and Description |
---|---|
String |
getReadable() |
String |
toString() |
static LiveViewTableCapability |
valueOf(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 final LiveViewTableCapability RELIABLE_PUBLISH
public static LiveViewTableCapability[] values()
for (LiveViewTableCapability c : LiveViewTableCapability.values()) System.out.println(c);
public static LiveViewTableCapability valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getReadable()
public String toString()
toString
in class Enum<LiveViewTableCapability>
Copyright © 2015–2019 Cloud Software Group, Inc.. All rights reserved.