Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.6.0)

E13403-07

oracle.javatools.db.ora
Class OracleIndexOrganizedTableProperties

java.lang.Object
  extended by oracle.javatools.db.AbstractDBObject
      extended by oracle.javatools.db.AbstractChildDBObject
          extended by oracle.javatools.db.ora.OracleIndexOrganizedTableProperties
All Implemented Interfaces:
ChildDBObject, DBObject, Copyable, DynamicPropertySet

public class OracleIndexOrganizedTableProperties
extends AbstractChildDBObject

Property object to hold the index organized specific properties for an IOT. For creationg, this object represents the index_org_table_clause from the CREATE TABLE statement.

Since:
11.0

Nested Class Summary
 
Nested classes/interfaces inherited from class oracle.javatools.db.AbstractDBObject
AbstractDBObject.ChildSupport
 
Field Summary
static java.lang.String KEY
           
static java.lang.String TYPE
           
 
Fields inherited from interface oracle.javatools.db.DBObject
COMMENT
 
Constructor Summary
OracleIndexOrganizedTableProperties()
           
OracleIndexOrganizedTableProperties(java.lang.Integer pctThreshold, boolean mapped, java.lang.Integer keyCompression, DBObjectID includeColum, boolean overflowable, OracleStorageProperties overflowProperties)
           
 
Method Summary
 DBObjectID getIncludeColumn()
          Gets the column (if any) to put in the INCLUDE clause.
 java.lang.Integer getKeyCompression()
          Gets the key compression.
 OracleStorageProperties getOverflowProperties()
          Gets the overflow properties that are used if the table is marked as overflowable.
 java.lang.Integer getPctThreshold()
          Gets the PCTTHRESHOLD property.
 java.lang.String getType()
          Returns the type of this object.
 boolean isMapped()
          Gets whether to include MAPPING TABLE or NOMAPPING.
 boolean isOverflowable()
          Gets whether to include an overflow clause.
 void setIncludeColumn(DBObjectID includeColumn)
          Sets the column (if any) to put in the INCLUDE clause.
 void setKeyCompression(java.lang.Integer keyCompression)
          Sets the key compression.
 void setMapped(boolean mapped)
          Sets whether to include a MAPPING TABLE (true) or NOMAPPING (false).
 void setOverflowable(boolean overflowable)
          Sets whether to include an overflow clause.
 void setOverflowProperties(OracleStorageProperties overflowProperties)
          Sets the overflow properties that are used if the table is marked as overflowable.
 void setPctThreshold(java.lang.Integer pctThreshold)
          Sets the PCTTHRESHOLD property.
 
Methods inherited from class oracle.javatools.db.AbstractChildDBObject
copyToImpl, findParent, getParent, getProperty, setParent, setProperty
 
Methods inherited from class oracle.javatools.db.AbstractDBObject
changeParent, compareToImpl, copyObject, copyTo, copyTo, copyTo, copyTo, equals, equalsImpl, findOwnedObject, findOwnedObject, findOwnedObject, getChildSupport, getID, getName, getOwnedObjects, getOwnedObjects, getOwnedObjectsImpl, getProperties, getProperty, getReferenceIDs, getReferenceIDsImpl, hashCode, includeOwnedObject, includesType, includesType, removeThisAsParent, replaceReferenceIDs, setID, setName, setProperties, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface oracle.javatools.db.DBObject
copyTo, copyTo, copyTo, findOwnedObject, findOwnedObject, getID, getName, getOwnedObjects, getOwnedObjects, getReferenceIDs, replaceReferenceIDs, setID, setName
 
Methods inherited from interface oracle.javatools.util.DynamicPropertySet
getProperties, getProperty, setProperties
 

Field Detail

TYPE

public static final java.lang.String TYPE
See Also:
Constant Field Values

KEY

public static final java.lang.String KEY
See Also:
Constant Field Values
Constructor Detail

OracleIndexOrganizedTableProperties

public OracleIndexOrganizedTableProperties()

OracleIndexOrganizedTableProperties

public OracleIndexOrganizedTableProperties(java.lang.Integer pctThreshold,
                                           boolean mapped,
                                           java.lang.Integer keyCompression,
                                           DBObjectID includeColum,
                                           boolean overflowable,
                                           OracleStorageProperties overflowProperties)
Method Detail

getType

public java.lang.String getType()
Description copied from interface: DBObject
Returns the type of this object. Valid types include things like tables, views, synonyms, and columns.

Returns:
a string describing the type of object.

setPctThreshold

public void setPctThreshold(java.lang.Integer pctThreshold)
Sets the PCTTHRESHOLD property. This can be null (no PCTTHRESHOLD specified) or a positive int less than 50.


getPctThreshold

public java.lang.Integer getPctThreshold()
Gets the PCTTHRESHOLD property.

See Also:
setPctThreshold(java.lang.Integer)

setMapped

public void setMapped(boolean mapped)
Sets whether to include a MAPPING TABLE (true) or NOMAPPING (false). Default is NOMAPPING.


isMapped

public boolean isMapped()
Gets whether to include MAPPING TABLE or NOMAPPING.


setKeyCompression

public void setKeyCompression(java.lang.Integer keyCompression)
Sets the key compression.
  1. null - NOCOMPRESS
  2. 0 - COMPRESS
  3. > 0 - COMPRESS integer


getKeyCompression

public java.lang.Integer getKeyCompression()
Gets the key compression.

See Also:
setKeyCompression(java.lang.Integer)

setIncludeColumn

public void setIncludeColumn(DBObjectID includeColumn)
Sets the column (if any) to put in the INCLUDE clause.


getIncludeColumn

public DBObjectID getIncludeColumn()
Gets the column (if any) to put in the INCLUDE clause.


setOverflowable

public void setOverflowable(boolean overflowable)
Sets whether to include an overflow clause.

See Also:
setOverflowProperties(oracle.javatools.db.ora.OracleStorageProperties)

isOverflowable

public boolean isOverflowable()
Gets whether to include an overflow clause.


setOverflowProperties

public void setOverflowProperties(OracleStorageProperties overflowProperties)
Sets the overflow properties that are used if the table is marked as overflowable.

See Also:
setOverflowable(boolean)

getOverflowProperties

public OracleStorageProperties getOverflowProperties()
Gets the overflow properties that are used if the table is marked as overflowable.

See Also:
isOverflowable()

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.6.0)

E13403-07

Copyright © 1997, 2011, Oracle. All rights reserved.