|
Oracle Fusion Middleware Java API Reference for Oracle ADF Model 11g Release 1 (11.1.1) E10653-03 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.sql.Datum
oracle.sql.CHAR
oracle.jbo.domain.Char
public class Char
This class provides a lightweight wrapper for oracle.sql.CHAR, the Java representation of the CHAR database type. This wrapper allows an instance of the oracle.sql.CHAR to be used as an immutable Domain object.
The intent of many of the methods in this class is to wrap the corresponding method in the oracle.sql class such that it returns an instance of an oracle.jbo.domain.* object.
The oracle.jbo.domain.CHAR class is the Java representation of the underlying database type that you must use if you want to exploit the domain feature of Business Components for Java.
Field Summary |
---|
Fields inherited from class oracle.sql.CHAR |
---|
BUILD_DATE, DEFAULT_CHARSET, PRIVATE_TRACE, TRACE |
Constructor Summary | |
---|---|
Char() Creates a Char Domain object representing the null string. |
|
Char(byte[] val, CharacterSet charset) Creates a Char Domain object from a byte array representing a string of a given character set. |
|
Char(byte[] val, int p1, int p2, CharacterSet charset) Internal: Applications should not invoke this method. |
|
Char(Char val) Creates a Char identical to an existing Char . |
|
Char(CHAR val) Creates a Char Domain object from a SQL CHAR . |
|
Char(java.lang.Object val) Creates a Char Domain object from an Object . |
|
Char(java.lang.Object val, CharacterSet charset) Creates a Char Domain object from an Object interpreted as a string of a given character set. |
|
Char(ResponseValues respVals) |
|
Char(java.lang.String val) Creates a Char Domain object from a String . |
|
Char(java.lang.String val, CharacterSet charset) Creates a Char Domain object from a String interpreted as a string of a given character set. |
Method Summary | |
---|---|
java.math.BigDecimal |
bigDecimalValue() Calls CHAR.bigDecimalValue() to convert this object into a Java BigDecimal. |
java.math.BigInteger |
bigIntegerValue() Converts this data object into a BigInteger. |
boolean |
booleanValue() Converts this data object into a boolean. |
double |
doubleValue() Converts this data object into a double. |
boolean |
equals(java.lang.Object other) Tests this for equality with another object. |
float |
floatValue() Converts this data object into a float. |
java.lang.Object |
getData() Internal: Applications should not use this method. |
java.lang.Object |
getNativeObject() |
static ORADataFactory |
getORADataFactory() Internal: Applications should not invoke this method. |
java.lang.String |
getValue() Return a java.lang.String object with this domain's value. |
int |
hashCode() Computes a hash code for this CharDomain object. |
int |
intValue() Convert this data object into a int. |
boolean |
isConvertibleTo(java.lang.Class jClass) Tests whether this data object can be converted to the specified Java data type. |
long |
longValue() Converts this data object into a long. |
static void |
main(java.lang.String[] argv) Internal: Applications should not invoke this method. |
ResponseValues |
marshal() |
void |
setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx) Internal: Applications should not use this method. |
Datum |
toDatum(java.sql.Connection conn) Internal: Applications should not invoke this method. |
Methods inherited from class oracle.sql.CHAR |
---|
asciiStreamValue, binaryStreamValue, byteValue, characterStreamValue, dateValue, getCharacterSet, getConnectionDuringExceptionHandling, getString, getStringWithReplacement, makeJdbcArray, oracleId, stringValue, timestampValue, timeValue, toJdbc, toString |
Methods inherited from class oracle.sql.Datum |
---|
compareBytes, getBytes, getLength, getStream, setBytes, setShareBytes, shareBytes |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface oracle.jbo.domain.KeyAttributeInterface |
---|
getBytes, setBytes |
Constructor Detail |
---|
public Char() throws java.sql.SQLException
Char
Domain object representing the null string.
This constructor does not create a null object: use one of the NullValue
objects to indicate null.
SQLException
- if the empty string is not defined as a character in DEFAULT_CHARSET
.java.sql.SQLException
public Char(Char val) throws java.sql.SQLException
Char
identical to an existing Char
.
val
- a Char
Domain object.java.sql.SQLException
- never.public Char(CHAR val) throws java.sql.SQLException
Char
Domain object from a SQL CHAR
.
val
- a CHAR
SQL object.java.sql.SQLException
- never.public Char(java.lang.String val) throws java.sql.SQLException
Char
Domain object from a String
.
val
- A unicode string interpreted as a DEFAULT_CHARSET
string.SQLException
- if val
does not represent a character.java.sql.SQLException
public Char(java.lang.Object val) throws java.sql.SQLException
Char
Domain object from an Object
.
val
- An object that will be converted using toString()
into a DEFAULT_CHARSET
string.SQLException
- if the string does not represent a character.java.sql.SQLException
public Char(byte[] val, CharacterSet charset)
Creates a Char
Domain object from a byte array representing a string of a given character set.
No validation is performed.
val
- A byte array representing a charset
string.charset
- An Oracle character set.public Char(byte[] val, int p1, int p2, CharacterSet charset)
Creates a Char
Domain object from a range of a byte array representing a string of a given character set.
No validation is performed.
val
- A byte array representing a charset
string.p1
- The index of the first byte in the range.p2
- The number of bytes in the range.charset
- An Oracle character set.public Char(java.lang.String val, CharacterSet charset) throws java.sql.SQLException
Char
Domain object from a String
interpreted as a string of a given character set.
val
- A unicode string interpreted as a charset
string.charset
- An Oracle character set.SQLException
- if val
does not represent a character.java.sql.SQLException
public Char(java.lang.Object val, CharacterSet charset) throws java.sql.SQLException
Char
Domain object from an Object
interpreted as a string of a given character set.
val
- An object that will be converted using toString()
into a charset
string.charset
- An Oracle character set.SQLException
- if the string does not represent a character.java.sql.SQLException
public Char(ResponseValues respVals) throws java.sql.SQLException
java.sql.SQLException
Method Detail |
---|
public static ORADataFactory getORADataFactory()
Initializes the Char
Domain.
This method is invoked when Business Components for Java is initialized. Applications should not call this method directly.
ORADataFactory
for the Char
Domain.public Datum toDatum(java.sql.Connection conn) throws java.sql.SQLException
Converts this Char
Domain object back into an SQL CHAR
object.
toDatum
in interface ORAData
conn
- OracleConnection
Not used.Datum
containing CHAR
object.SQLException
.
java.sql.SQLException
public java.lang.Object getNativeObject()
getNativeObject
in interface NativeTypeDomainInterface
public java.lang.String getValue()
public java.lang.Object getData()
getData
in interface DomainInterface
public void setContext(DomainOwnerInterface owner, Transaction trans, java.lang.Object ctx)
setContext
in interface DomainInterface
public int hashCode()
this
CharDomain object. The Domain type is ignored.hashCode
in class java.lang.Object
this
CharDomain object.public boolean equals(java.lang.Object other)
this
for equality with another object. Since JDeveloper 9.0.2, this method will also compare Char objects of different CharacterSets by converting the two CharacterSets into a common characterset if required, so as to compare and return the actual string differences.
Note that oracle.sql.CHAR does not perform such conversion before comparision. In Oracle9i database charset may be different from the charset of a client machine and that leads to different charsets in the CHAR object.
equals
in class CHAR
other
- An arbitrary Object
.true
if conversion was successful and the converted argument is identical to this
.public static void main(java.lang.String[] argv) throws java.sql.SQLException
For testing purposes only.
java.sql.SQLException
public ResponseValues marshal()
marshal
in interface MarshalledDomain
public boolean isConvertibleTo(java.lang.Class jClass)
isConvertibleTo
in class CHAR
jClass
- specifies the Java data type to test against.public int intValue()
intValue
in class CHAR
public long longValue()
longValue
in class CHAR
public float floatValue()
floatValue
in class CHAR
public double doubleValue()
doubleValue
in class CHAR
public java.math.BigInteger bigIntegerValue()
public boolean booleanValue()
booleanValue
in class CHAR
public java.math.BigDecimal bigDecimalValue()
bigDecimalValue
in class CHAR
|
Oracle Fusion Middleware Java API Reference for Oracle ADF Model 11g Release 1 (11.1.1) E10653-03 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |