All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oracle.toplink.essentials.internal.parsing.TypeHelper Maven / Gradle / Ivy

There is a newer version: 2.1-60f
Show newest version
/*
 * The contents of this file are subject to the terms 
 * of the Common Development and Distribution License 
 * (the "License").  You may not use this file except 
 * in compliance with the License.
 * 
 * You can obtain a copy of the license at 
 * glassfish/bootstrap/legal/CDDLv1.0.txt or 
 * https://glassfish.dev.java.net/public/CDDLv1.0.html. 
 * See the License for the specific language governing 
 * permissions and limitations under the License.
 * 
 * When distributing Covered Code, include this CDDL 
 * HEADER in each file and include the License file at 
 * glassfish/bootstrap/legal/CDDLv1.0.txt.  If applicable, 
 * add the following below this CDDL HEADER, with the 
 * fields enclosed by brackets "[]" replaced with your 
 * own identifying information: Portions Copyright [yyyy] 
 * [name of copyright owner]
 */
// Copyright (c) 1998, 2007, Oracle. All rights reserved.  
package oracle.toplink.essentials.internal.parsing;

/**
 * INTERNAL
 * 

Purpose: Specify type helper methods. */ public interface TypeHelper { /** Returns the name of the specified type. */ public String getTypeName(Object type); /** Returns a type representation for the specified type name or null if * there is no such type. */ public Object resolveTypeName(String typeName); /** Returns the type of the attribute with the specified name in the * specified owner class. */ public Object resolveAttribute(Object ownerClass, String attribute); /** Returns the type of the class corresponding to the spcified abstract * schema type. */ public Object resolveSchema(String schemaName); /** Returns the enum constant if the specified type denotes an enum type * and the specified constant denotes a constant of the enum type. */ public Object resolveEnumConstant(Object enumType, String constant); /** Returns the type representation of class Object.*/ public Object getObjectType(); /** Returns the boolean type representation.*/ public Object getBooleanType(); /** Returns the char type representation.*/ public Object getCharType(); /** Returns the int type representation.*/ public Object getIntType(); /** Returns the long type representation.*/ public Object getLongType(); /** Returns the type representation of class Long.*/ public Object getLongClassType(); /** Returns the float type representation.*/ public Object getFloatType(); /** Returns the double type representation.*/ public Object getDoubleType(); /** Returns the type representation of class Double.*/ public Object getDoubleClassType(); /** Returns the type representation oc class String.*/ public Object getStringType(); /** Returns the type representation of class BigInteger.*/ public Object getBigIntegerType(); /** Returns the type representation of class BigDecimal.*/ public Object getBigDecimalType(); /** Returns true if the specified type denotes an enum type. */ public boolean isEnumType(Object type); /** Returns true if the specified type represents an * integral type (or wrapper), a floating point type (or wrapper), * BigInteger or BigDecimal. */ public boolean isNumericType(Object type); /** Returns true if the specified type represents an * integral type or a wrapper class of an integral type. */ public boolean isIntegralType(Object type); /** Returns true if the specified type represents an floating point type * or a wrapper class of an floating point type. */ public boolean isFloatingPointType(Object type); /** Returns true if the specified type represents java.lang.String. */ public boolean isStringType(Object type); /** Returns true if the specified type represents java.math.BigInteger. */ public boolean isBigIntegerType(Object type); /** Returns true if the specified type represents java.math.BigDecimal. */ public boolean isBigDecimalType(Object type); /** Returns true if the specified type denotes an orable type. */ public boolean isOrderableType(Object type); /** Returns true if the specified type denotes an entity class. */ public boolean isEntityClass(Object type); /** Returns true if the specified type denotes an embedded class. */ public boolean isEmbeddable(Object type); /** Returns true if the specified type denotes an embedded attribute. */ public boolean isEmbeddedAttribute(Object ownerClass, String attribute); /** Returns true if the specified type denotes a simple state attribute. */ public boolean isSimpleStateAttribute(Object ownerClass, String attribute); /** Returns true if the specified attribute denotes a single valued * relationship attribute. */ public boolean isSingleValuedRelationship( Object ownerClass, String attribute); /** Returns true if the specified attribute denotes a collection valued * relationship attribute. */ public boolean isCollectionValuedRelationship( Object ownerClass, String attribute); /** Returns true if left is assignable from right. */ public boolean isAssignableFrom(Object left, Object right); /** Binary numeric promotion as specified in the JLS, extended by * wrapper classes, BigDecimal and BigInteger. */ public Object extendedBinaryNumericPromotion(Object left, Object right); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy