Liking cljdoc? Tell your friends :D

jdk.sql.RowIdLifetime


*value-ofclj

(*value-of 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.)

name - the name of the enum constant to be returned. - java.lang.String

returns: the enum constant with the specified name - java.sql.RowIdLifetime

throws: java.lang.IllegalArgumentException - if this enum type has no constant with the specified 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.)

name - the name of the enum constant to be returned. - `java.lang.String`

returns: the enum constant with the specified name - `java.sql.RowIdLifetime`

throws: java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
raw docstring

*valuesclj

(*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 (RowIdLifetime c : RowIdLifetime.values()) System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - java.sql.RowIdLifetime[]

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 (RowIdLifetime c : RowIdLifetime.values())
    System.out.println(c);

returns: an array containing the constants of this enum type, in the order they are declared - `java.sql.RowIdLifetime[]`
raw docstring

ROWID_UNSUPPORTEDclj

Enum Constant.

Indicates that this data source does not support the ROWID type.

type: java.sql.RowIdLifetime

Enum Constant.

Indicates that this data source does not support the ROWID type.

type: java.sql.RowIdLifetime
raw docstring

ROWID_VALID_FOREVERclj

Enum Constant.

Indicates that the lifetime of a RowId from this data source is, effectively, unlimited.

type: java.sql.RowIdLifetime

Enum Constant.

Indicates that the lifetime of a RowId from this data source is, effectively,
 unlimited.

type: java.sql.RowIdLifetime
raw docstring

ROWID_VALID_OTHERclj

Enum Constant.

Indicates that the lifetime of a RowId from this data source is indeterminate; but not one of ROWID_VALID_TRANSACTION, ROWID_VALID_SESSION, or, ROWID_VALID_FOREVER.

type: java.sql.RowIdLifetime

Enum Constant.

Indicates that the lifetime of a RowId from this data source is indeterminate;
 but not one of ROWID_VALID_TRANSACTION, ROWID_VALID_SESSION, or,
 ROWID_VALID_FOREVER.

type: java.sql.RowIdLifetime
raw docstring

ROWID_VALID_SESSIONclj

Enum Constant.

Indicates that the lifetime of a RowId from this data source is at least the containing session.

type: java.sql.RowIdLifetime

Enum Constant.

Indicates that the lifetime of a RowId from this data source is at least the
 containing session.

type: java.sql.RowIdLifetime
raw docstring

ROWID_VALID_TRANSACTIONclj

Enum Constant.

Indicates that the lifetime of a RowId from this data source is at least the containing transaction.

type: java.sql.RowIdLifetime

Enum Constant.

Indicates that the lifetime of a RowId from this data source is at least the
 containing transaction.

type: java.sql.RowIdLifetime
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close