public static enum OracleTableProperties.OracleTableCompression extends java.lang.Enum<OracleTableProperties.OracleTableCompression>
| Enum Constant and Description | 
|---|
COLUMN_STORE_COMPRESS_FOR_ARCHIVE_HIGH_ROW_LEVEL_LOCKING
Column store compress for archive high row level locking (12c onwards) 
 | 
COLUMN_STORE_COMPRESS_FOR_ARCHIVE_LOW_ROW_LEVEL_LOCKING
Column store compress for archive low row level locking (12c onwards) 
 | 
COLUMN_STORE_COMPRESS_FOR_QUERY_HIGH_ROW_LEVEL_LOCKING
Column store compress for query high row level locking (12c onwards) 
 | 
COLUMN_STORE_COMPRESS_FOR_QUERY_LOW_ROW_LEVEL_LOCKING
Column store compress for query low row level locking (12c onwards) 
 | 
COLUMN_STORE_COMPRESS_ROW_LEVEL_LOCKING
Column store compress for archive low no row level locking (12c onwards) 
 | 
COMPRESS
Compress (with default options) 
 | 
COMPRESS_FOR_ALL_OPERATIONS
Compress for all operations (11g) 
 | 
COMPRESS_FOR_ARCHIVE_HIGH
Compress for archive high (11gR2 onwards) 
 | 
COMPRESS_FOR_ARCHIVE_LOW
Compress for archive low (11gR2 onwards) 
 | 
COMPRESS_FOR_DIRECT_LOAD_OPERATIONS
Compress for direct load operations (11g) 
 | 
COMPRESS_FOR_OLTP
Compress for OLTP (11gR2 onwards) 
 | 
COMPRESS_FOR_QUERY_HIGH
Compress for query high (11gR2 onwards) 
 | 
COMPRESS_FOR_QUERY_LOW
Compress for query low (11gR2 onwards) 
 | 
NOCOMPRESS
No compress 
 | 
ROW_STORE_COMPRESS_ADVANCED
Row store compress advanced (12c onwards) 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static java.lang.Boolean | 
convertToBoolean(OracleTableProperties.OracleTableCompression comp)
Converts an OracleTableCompression enum value to a Boolean value for
 compression (for backward compatability) 
 | 
java.lang.String | 
getValue()  | 
static OracleTableProperties.OracleTableCompression | 
migrateFrom(java.lang.Object value)
Converts a migrated value to a OracleTableCompression enum value
 (for backward compatability) 
 | 
java.lang.String | 
toString()  | 
static OracleTableProperties.OracleTableCompression | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static OracleTableProperties.OracleTableCompression[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final OracleTableProperties.OracleTableCompression NOCOMPRESS
public static final OracleTableProperties.OracleTableCompression COMPRESS
public static final OracleTableProperties.OracleTableCompression ROW_STORE_COMPRESS_ADVANCED
public static final OracleTableProperties.OracleTableCompression COMPRESS_FOR_ALL_OPERATIONS
public static final OracleTableProperties.OracleTableCompression COMPRESS_FOR_DIRECT_LOAD_OPERATIONS
public static final OracleTableProperties.OracleTableCompression COMPRESS_FOR_OLTP
public static final OracleTableProperties.OracleTableCompression COMPRESS_FOR_ARCHIVE_LOW
public static final OracleTableProperties.OracleTableCompression COMPRESS_FOR_ARCHIVE_HIGH
public static final OracleTableProperties.OracleTableCompression COMPRESS_FOR_QUERY_LOW
public static final OracleTableProperties.OracleTableCompression COMPRESS_FOR_QUERY_HIGH
public static final OracleTableProperties.OracleTableCompression COLUMN_STORE_COMPRESS_ROW_LEVEL_LOCKING
public static final OracleTableProperties.OracleTableCompression COLUMN_STORE_COMPRESS_FOR_ARCHIVE_LOW_ROW_LEVEL_LOCKING
public static final OracleTableProperties.OracleTableCompression COLUMN_STORE_COMPRESS_FOR_ARCHIVE_HIGH_ROW_LEVEL_LOCKING
public static final OracleTableProperties.OracleTableCompression COLUMN_STORE_COMPRESS_FOR_QUERY_LOW_ROW_LEVEL_LOCKING
public static final OracleTableProperties.OracleTableCompression COLUMN_STORE_COMPRESS_FOR_QUERY_HIGH_ROW_LEVEL_LOCKING
public static OracleTableProperties.OracleTableCompression[] values()
for (OracleTableProperties.OracleTableCompression c : OracleTableProperties.OracleTableCompression.values()) System.out.println(c);
public static OracleTableProperties.OracleTableCompression 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 getValue()
public java.lang.String toString()
toString in class java.lang.Enum<OracleTableProperties.OracleTableCompression>public static OracleTableProperties.OracleTableCompression migrateFrom(java.lang.Object value)
value - compress valuepublic static java.lang.Boolean convertToBoolean(OracleTableProperties.OracleTableCompression comp)
comp - table compression value