Package org.jpox.exceptions

Examples of org.jpox.exceptions.JPOXException


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


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

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

     * @param ownerSM the owner StateManager
     * @param ownerFieldNumber the owner absolute field number
     */   
    public void setObject(ObjectManager om, Object datastoreStatement, int[] exprIndex, Object value, StateManager ownerSM, int ownerFieldNumber)
    {
        throw new JPOXException(failureMessage("setObject")).setFatal();
    }
View Full Code Here

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

     * @param ownerFieldNumber the owner absolute field number
     * @return the value
     */
    public Object getObject(ObjectManager om, Object datastoreResults, int[] exprIndex, StateManager ownerSM, int ownerFieldNumber)
    {
        throw new JPOXException(failureMessage("getObject")).setFatal();
    }
View Full Code Here

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

        return ClassNameConstants.JAVA_IO_SERIALIZABLE;
    }

    public ScalarExpression newLiteral(QueryExpression qs, Object value)
    {
        throw new JPOXException(getJavaType().getName()+" is not supported in queries.").setFatal();
    }
View Full Code Here

        throw new JPOXException(getJavaType().getName()+" is not supported in queries.").setFatal();
    }

    public ScalarExpression newScalarExpression(QueryExpression qs, LogicSetExpression te)
    {
        throw new JPOXException(getJavaType().getName()+" is not supported in queries.").setFatal();
    }
View Full Code Here

     */
    public CollectionCandidates(ObjectManager om, Class candidateClass, Collection candidates)
    {
        if (candidates == null)
        {
            throw new JPOXException(LOCALISER.msg("021072")).setFatal();
        }

        this.userCandidates = candidates;
        this.extent = om.getExtent(candidateClass, true);
    }
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.