Package org.jpox.exceptions

Examples of org.jpox.exceptions.JPOXException


     * @param exprIndex the position of the value in the result
     * @return the value
     */
    public byte getByte(ObjectManager om, Object datastoreResults, int[] exprIndex)
    {
        throw new JPOXException(failureMessage("getByte")).setFatal();
    }
View Full Code Here


     * @param exprIndex the position of the value in the statement
     * @param value the value
     */
    public void setShort(ObjectManager om, Object datastoreStatement, int[] exprIndex, short value)
    {
        throw new JPOXException(failureMessage("setShort")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the result
     * @return the value
     */
    public short getShort(ObjectManager om, Object datastoreResults, int[] exprIndex)
    {
        throw new JPOXException(failureMessage("getShort")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the statement
     * @param value the value
     */
    public void setInt(ObjectManager om, Object datastoreStatement, int[] exprIndex, int value)
    {
        throw new JPOXException(failureMessage("setInt")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the result
     * @return the value
     */
    public int getInt(ObjectManager om, Object datastoreResults, int[] exprIndex)
    {
        throw new JPOXException(failureMessage("getInt")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the statement
     * @param value the value
     */
    public void setLong(ObjectManager om, Object datastoreStatement, int[] exprIndex, long value)
    {
        throw new JPOXException(failureMessage("setLong")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the result
     * @return the value
     */
    public long getLong(ObjectManager om, Object datastoreResults, int[] exprIndex)
    {
        throw new JPOXException(failureMessage("getLong")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the statement
     * @param value the value
     */
    public void setFloat(ObjectManager om, Object datastoreStatement, int[] exprIndex, float value)
    {
        throw new JPOXException(failureMessage("setFloat")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the result
     * @return the value
     */
    public float getFloat(ObjectManager om, Object datastoreResults, int[] exprIndex)
    {
        throw new JPOXException(failureMessage("getFloat")).setFatal();
    }
View Full Code Here

     * @param exprIndex the position of the value in the statement
     * @param value the value
     */
    public void setDouble(ObjectManager om, Object datastoreStatement, int[] exprIndex, double value)
    {
        throw new JPOXException(failureMessage("setDouble")).setFatal();
    }
View Full Code Here

TOP

Related Classes of org.jpox.exceptions.JPOXException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.