Methods Summary |
---|
public boolean | equals(java.lang.Object obj)Indicates whether some other object is "equal to" this one.
Two types are equal if their names are equal.
if (obj == this)
return true;
else if (obj instanceof Type)
return this.name.equals(((Type)obj).name);
else
return false;
|
public int | getEnumType()Returns the FieldTypeEnumeration value for this type.
return enumType;
|
public java.lang.Class | getJavaClass()Returns the corresponding class object.
return this.clazz;
|
public java.lang.String | getName()Returns the name of the type.
return name;
|
public abstract boolean | isCompatibleWith(com.sun.jdo.spi.persistence.support.sqlstore.query.util.type.Type type)Checks type compatibility.
|
public boolean | isOrderable()Returns whether this represents a type with an
defined order.
return false;
|
public java.lang.String | toString()Representation of this type as a string.
return getName();
|