Package io.deephaven.jdbc
Enum DeephavenProperty
- All Implemented Interfaces:
Serializable
,Comparable<DeephavenProperty>
,java.lang.constant.Constable
public enum DeephavenProperty extends Enum<DeephavenProperty>
An enumeration representing legal properties for a Deephaven JDBC data source. We also provide default values,
descriptions and possibly a set of possible options for each property.
-
Nested Class Summary
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description String
get(Properties properties)
boolean
getBoolean(Properties properties)
int
getInt(Properties properties)
Boolean
getNullableBoolean(Properties properties)
Integer
getNullableInteger(Properties properties)
String[]
getStringArray(Properties properties)
boolean
isPresent(Properties properties)
void
set(Properties properties, boolean value)
void
set(Properties properties, int value)
void
set(Properties properties, String value)
void
set(Properties properties, String[] value)
static DeephavenProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static DeephavenProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
queryHost
-
queryPort
-
user
-
password
-
sessionType
-
maxHeapSizeMb
-
logLevel
-
sourcePath
-
operateAsUser
-
logName
-
logPath
-
logRollIntervalMs
-
propFile
-
workspace
-
devroot
-
authSsl
-
authServers
-
authCheckOrigin
-
authReconnectionPeriod
-
debug
-
detailedGCLogging
-
omitDefaultGcParameters
-
authTimeoutMs
-
bindParameterMode
-
readDefaultClassPushList
-
jvmArgs
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
isPresent
-
get
-
set
-
set
-
getBoolean
-
getStringArray
-
getInt
-
getNullableBoolean
-
getNullableInteger
-
set
-
set
-