Regenerated the Oracle dictionary views

This commit is contained in:
Lukas Eder 2012-01-11 18:52:22 +00:00
parent 187fbf7141
commit a0266fe617
11 changed files with 209 additions and 19 deletions

View File

@ -43,7 +43,7 @@ public final class Tables {
public static org.jooq.util.oracle.sys.tables.AllObjects ALL_OBJECTS = org.jooq.util.oracle.sys.tables.AllObjects.ALL_OBJECTS;
/**
* Description of all procedures available to the user
* Functions/procedures/packages/types/triggers available to the user
*/
public static org.jooq.util.oracle.sys.tables.AllProcedures ALL_PROCEDURES = org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES;

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables;
comments = "This class is generated by jOOQ")
public class AllArguments extends org.jooq.impl.TableImpl<org.jooq.util.oracle.sys.tables.records.AllArgumentsRecord> {
private static final long serialVersionUID = -1671267079;
private static final long serialVersionUID = 702699865;
/**
* The singleton instance of ALL_ARGUMENTS
@ -57,6 +57,11 @@ public class AllArguments extends org.jooq.impl.TableImpl<org.jooq.util.oracle.s
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllArgumentsRecord, java.lang.String> OVERLOAD = createField("OVERLOAD", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Unique sub-program Identifier
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllArgumentsRecord, java.math.BigDecimal> SUBPROGRAM_ID = createField("SUBPROGRAM_ID", org.jooq.impl.SQLDataType.NUMERIC, this);
/**
* Argument name
*/
@ -82,6 +87,11 @@ public class AllArguments extends org.jooq.impl.TableImpl<org.jooq.util.oracle.s
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllArgumentsRecord, java.lang.String> DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Is the argument defaulted?
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllArgumentsRecord, java.lang.String> DEFAULTED = createField("DEFAULTED", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Default value for the argument
*/

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables;
comments = "This class is generated by jOOQ")
public class AllCollTypes extends org.jooq.impl.TableImpl<org.jooq.util.oracle.sys.tables.records.AllCollTypesRecord> {
private static final long serialVersionUID = 1404934133;
private static final long serialVersionUID = 1599444089;
/**
* The singleton instance of ALL_COLL_TYPES
@ -99,6 +99,11 @@ binary precision of the FLOAT element
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllCollTypesRecord, java.lang.String> NULLS_STORED = createField("NULLS_STORED", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* C if the width was specified in characters, B if in bytes
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllCollTypesRecord, java.lang.String> CHAR_USED = createField("CHAR_USED", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* No further instances allowed
*/

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables;
comments = "This class is generated by jOOQ")
public class AllObjects extends org.jooq.impl.TableImpl<org.jooq.util.oracle.sys.tables.records.AllObjectsRecord> {
private static final long serialVersionUID = -1942451325;
private static final long serialVersionUID = 1788768018;
/**
* The singleton instance of ALL_OBJECTS
@ -97,6 +97,16 @@ public class AllObjects extends org.jooq.impl.TableImpl<org.jooq.util.oracle.sys
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllObjectsRecord, java.lang.String> SECONDARY = createField("SECONDARY", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Namespace for the object
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllObjectsRecord, java.math.BigDecimal> NAMESPACE = createField("NAMESPACE", org.jooq.impl.SQLDataType.NUMERIC, this);
/**
* Name of the edition in which the object is actual
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllObjectsRecord, java.lang.String> EDITION_NAME = createField("EDITION_NAME", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* No further instances allowed
*/

View File

@ -6,13 +6,13 @@ package org.jooq.util.oracle.sys.tables;
/**
* This class is generated by jOOQ.
*
* Description of all procedures available to the user
* Functions/procedures/packages/types/triggers available to the user
*/
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
comments = "This class is generated by jOOQ")
public class AllProcedures extends org.jooq.impl.TableImpl<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord> {
private static final long serialVersionUID = 1843350366;
private static final long serialVersionUID = -1383180095;
/**
* The singleton instance of ALL_PROCEDURES
@ -38,15 +38,35 @@ public class AllProcedures extends org.jooq.impl.TableImpl<org.jooq.util.oracle.
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord, java.lang.String> OWNER = createField("OWNER", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Name of the object : top level function/procedure/package name
* Name of the object: top level function/procedure/package/type/trigger name
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord, java.lang.String> OBJECT_NAME = createField("OBJECT_NAME", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Name of the procedure
* Name of the package or type subprogram
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord, java.lang.String> PROCEDURE_NAME = createField("PROCEDURE_NAME", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Object number of the object
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord, java.math.BigDecimal> OBJECT_ID = createField("OBJECT_ID", org.jooq.impl.SQLDataType.NUMERIC, this);
/**
* Unique sub-program identifier
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord, java.math.BigDecimal> SUBPROGRAM_ID = createField("SUBPROGRAM_ID", org.jooq.impl.SQLDataType.NUMERIC, this);
/**
* Overload unique identifier
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord, java.lang.String> OVERLOAD = createField("OVERLOAD", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* The typename of the object
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord, java.lang.String> OBJECT_TYPE = createField("OBJECT_TYPE", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* Is it an aggregate function ?
*/

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables;
comments = "This class is generated by jOOQ")
public class AllTypeAttrs extends org.jooq.impl.TableImpl<org.jooq.util.oracle.sys.tables.records.AllTypeAttrsRecord> {
private static final long serialVersionUID = -2117557957;
private static final long serialVersionUID = 1636640410;
/**
* The singleton instance of ALL_TYPE_ATTRS
@ -95,6 +95,11 @@ type specification or CREATE TYPE statement (not to be used as ID number)
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllTypeAttrsRecord, java.lang.String> INHERITED = createField("INHERITED", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* C if the width was specified in characters, B if in bytes
*/
public final org.jooq.TableField<org.jooq.util.oracle.sys.tables.records.AllTypeAttrsRecord, java.lang.String> CHAR_USED = createField("CHAR_USED", org.jooq.impl.SQLDataType.VARCHAR, this);
/**
* No further instances allowed
*/

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables.records;
comments = "This class is generated by jOOQ")
public class AllArgumentsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.oracle.sys.tables.records.AllArgumentsRecord> {
private static final long serialVersionUID = -37067484;
private static final long serialVersionUID = -1544627568;
/**
* Username of the owner of the object
@ -84,6 +84,20 @@ public class AllArgumentsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.u
return getValue(org.jooq.util.oracle.sys.tables.AllArguments.ALL_ARGUMENTS.OVERLOAD);
}
/**
* Unique sub-program Identifier
*/
public void setSubprogramId(java.math.BigDecimal value) {
setValue(org.jooq.util.oracle.sys.tables.AllArguments.ALL_ARGUMENTS.SUBPROGRAM_ID, value);
}
/**
* Unique sub-program Identifier
*/
public java.math.BigDecimal getSubprogramId() {
return getValue(org.jooq.util.oracle.sys.tables.AllArguments.ALL_ARGUMENTS.SUBPROGRAM_ID);
}
/**
* Argument name
*/
@ -154,6 +168,20 @@ public class AllArgumentsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.u
return getValue(org.jooq.util.oracle.sys.tables.AllArguments.ALL_ARGUMENTS.DATA_TYPE);
}
/**
* Is the argument defaulted?
*/
public void setDefaulted(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllArguments.ALL_ARGUMENTS.DEFAULTED, value);
}
/**
* Is the argument defaulted?
*/
public java.lang.String getDefaulted() {
return getValue(org.jooq.util.oracle.sys.tables.AllArguments.ALL_ARGUMENTS.DEFAULTED);
}
/**
* Default value for the argument
*/

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables.records;
comments = "This class is generated by jOOQ")
public class AllCollTypesRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.oracle.sys.tables.records.AllCollTypesRecord> {
private static final long serialVersionUID = 2022410738;
private static final long serialVersionUID = 823130568;
/**
* Owner of the type
@ -200,6 +200,20 @@ binary precision of the FLOAT element
return getValue(org.jooq.util.oracle.sys.tables.AllCollTypes.ALL_COLL_TYPES.NULLS_STORED);
}
/**
* C if the width was specified in characters, B if in bytes
*/
public void setCharUsed(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllCollTypes.ALL_COLL_TYPES.CHAR_USED, value);
}
/**
* C if the width was specified in characters, B if in bytes
*/
public java.lang.String getCharUsed() {
return getValue(org.jooq.util.oracle.sys.tables.AllCollTypes.ALL_COLL_TYPES.CHAR_USED);
}
/**
* Create a detached AllCollTypesRecord
*/

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables.records;
comments = "This class is generated by jOOQ")
public class AllObjectsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.oracle.sys.tables.records.AllObjectsRecord> {
private static final long serialVersionUID = 1391852052;
private static final long serialVersionUID = 287843616;
/**
* Username of the owner of the object
@ -196,6 +196,34 @@ public class AllObjectsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.uti
return getValue(org.jooq.util.oracle.sys.tables.AllObjects.ALL_OBJECTS.SECONDARY);
}
/**
* Namespace for the object
*/
public void setNamespace(java.math.BigDecimal value) {
setValue(org.jooq.util.oracle.sys.tables.AllObjects.ALL_OBJECTS.NAMESPACE, value);
}
/**
* Namespace for the object
*/
public java.math.BigDecimal getNamespace() {
return getValue(org.jooq.util.oracle.sys.tables.AllObjects.ALL_OBJECTS.NAMESPACE);
}
/**
* Name of the edition in which the object is actual
*/
public void setEditionName(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllObjects.ALL_OBJECTS.EDITION_NAME, value);
}
/**
* Name of the edition in which the object is actual
*/
public java.lang.String getEditionName() {
return getValue(org.jooq.util.oracle.sys.tables.AllObjects.ALL_OBJECTS.EDITION_NAME);
}
/**
* Create a detached AllObjectsRecord
*/

View File

@ -6,13 +6,13 @@ package org.jooq.util.oracle.sys.tables.records;
/**
* This class is generated by jOOQ.
*
* Description of all procedures available to the user
* Functions/procedures/packages/types/triggers available to the user
*/
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.2"},
comments = "This class is generated by jOOQ")
public class AllProceduresRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.oracle.sys.tables.records.AllProceduresRecord> {
private static final long serialVersionUID = -738548755;
private static final long serialVersionUID = -1112349319;
/**
* An uncommented item
@ -29,33 +29,89 @@ public class AllProceduresRecord extends org.jooq.impl.TableRecordImpl<org.jooq.
}
/**
* Name of the object : top level function/procedure/package name
* Name of the object: top level function/procedure/package/type/trigger name
*/
public void setObjectName(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OBJECT_NAME, value);
}
/**
* Name of the object : top level function/procedure/package name
* Name of the object: top level function/procedure/package/type/trigger name
*/
public java.lang.String getObjectName() {
return getValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OBJECT_NAME);
}
/**
* Name of the procedure
* Name of the package or type subprogram
*/
public void setProcedureName(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.PROCEDURE_NAME, value);
}
/**
* Name of the procedure
* Name of the package or type subprogram
*/
public java.lang.String getProcedureName() {
return getValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.PROCEDURE_NAME);
}
/**
* Object number of the object
*/
public void setObjectId(java.math.BigDecimal value) {
setValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OBJECT_ID, value);
}
/**
* Object number of the object
*/
public java.math.BigDecimal getObjectId() {
return getValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OBJECT_ID);
}
/**
* Unique sub-program identifier
*/
public void setSubprogramId(java.math.BigDecimal value) {
setValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.SUBPROGRAM_ID, value);
}
/**
* Unique sub-program identifier
*/
public java.math.BigDecimal getSubprogramId() {
return getValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.SUBPROGRAM_ID);
}
/**
* Overload unique identifier
*/
public void setOverload(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OVERLOAD, value);
}
/**
* Overload unique identifier
*/
public java.lang.String getOverload() {
return getValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OVERLOAD);
}
/**
* The typename of the object
*/
public void setObjectType(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OBJECT_TYPE, value);
}
/**
* The typename of the object
*/
public java.lang.String getObjectType() {
return getValue(org.jooq.util.oracle.sys.tables.AllProcedures.ALL_PROCEDURES.OBJECT_TYPE);
}
/**
* Is it an aggregate function ?
*/

View File

@ -12,7 +12,7 @@ package org.jooq.util.oracle.sys.tables.records;
comments = "This class is generated by jOOQ")
public class AllTypeAttrsRecord extends org.jooq.impl.TableRecordImpl<org.jooq.util.oracle.sys.tables.records.AllTypeAttrsRecord> {
private static final long serialVersionUID = 999948773;
private static final long serialVersionUID = -2028634701;
/**
* Owner of the type
@ -188,6 +188,20 @@ type specification or CREATE TYPE statement (not to be used as ID number)
return getValue(org.jooq.util.oracle.sys.tables.AllTypeAttrs.ALL_TYPE_ATTRS.INHERITED);
}
/**
* C if the width was specified in characters, B if in bytes
*/
public void setCharUsed(java.lang.String value) {
setValue(org.jooq.util.oracle.sys.tables.AllTypeAttrs.ALL_TYPE_ATTRS.CHAR_USED, value);
}
/**
* C if the width was specified in characters, B if in bytes
*/
public java.lang.String getCharUsed() {
return getValue(org.jooq.util.oracle.sys.tables.AllTypeAttrs.ALL_TYPE_ATTRS.CHAR_USED);
}
/**
* Create a detached AllTypeAttrsRecord
*/