public static enum Constants.QueryHints.SizerHints extends Enum<Constants.QueryHints.SizerHints>
example:
SELECT * FROM sys.memoryAnalytics -- GEMFIREXD-PROPERTIES sizerHints=withMemoryFootPrint \n
jdbc example:
java.sql.Statement st = conn.createStatement(); StringBuilder sb = new StringBuilder("SELECT * FROM sys.memoryAnalytics -- GEMFIREXD-PROPERTIES sizerHints="); sb.append(com.pivotal.gemfirexd.Constants.QueryHints.SizerHints.withMemoryFootPrint.name()); sb.append("\n"); java.sql.ResultSet rs = st.executeQuery(sb.toString()); while(rs.next()) { System.out.println(rs.getObject(1)); }
| Enum Constant and Description |
|---|
logObjectReferenceGraph |
logTopConsumers |
traceOutput |
traceVerbose |
withMemoryFootPrint |
| Modifier and Type | Method and Description |
|---|---|
static Constants.QueryHints.SizerHints |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.QueryHints.SizerHints[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.QueryHints.SizerHints withMemoryFootPrint
public static final Constants.QueryHints.SizerHints logObjectReferenceGraph
public static final Constants.QueryHints.SizerHints logTopConsumers
public static final Constants.QueryHints.SizerHints traceOutput
public static final Constants.QueryHints.SizerHints traceVerbose
public static Constants.QueryHints.SizerHints[] values()
for (Constants.QueryHints.SizerHints c : Constants.QueryHints.SizerHints.values()) System.out.println(c);
public static Constants.QueryHints.SizerHints 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 nullCopyright © 2010-2015 Pivotal Software, Inc. All rights reserved.