Class SchemaImpl

All Implemented Interfaces:
Expression, Field, QueryObject, Schema

public final class SchemaImpl extends AbstractField implements Schema
Final immutable class that implements Schema.
Since:
1.3
Version:
$Revision: 7121 $ $Date: 2006-04-25 16:09:10 -0600 (Tue, 25 Apr 2006) $
Author:
Udai Gupta, Ralf Joachim
  • Constructor Details

    • SchemaImpl

      public SchemaImpl(String name, String identifier)
      Construct schema with given abstract schema name and identifier.
      Parameters:
      name - The abstract schema name represented by the Schema.
      identifier - The identifier of the schema.
    • SchemaImpl

      public SchemaImpl(Class<?> type, String identifier)
      Construct schema that represents given type with given identifier.
      Parameters:
      type - The type represented by the Schema.
      identifier - The identifier of the schema.
  • Method Details

    • getAbstractName

      public String getAbstractName()
      Gets the abstract schema name.
      Returns:
      The abstract schema name.
    • getTypeName

      public String getTypeName()
      Gets the name of the type represented by the Schema.
      Returns:
      The name of the type represented by the Schema.
    • getType

      public Class getType()
      Gets the type represented by the Schema.
      Returns:
      The type represented by the Schema.
    • getIdentifier

      public String getIdentifier()
      Gets the identifier of the schema.
      Returns:
      The identifier of the schema.
    • toString

      public StringBuilder toString(StringBuilder sb)
      Append a string representation of the object to the given StringBuilder. In general, the toString method for query objects appends a string that textually represents this object. The result should be a query string that complies to EJB QL specification as long as the query object represents a syntay element of it. It is required that all subclasses override this method. The toString method defined at class Object is overwritten and calls this method.
      Specified by:
      toString in interface QueryObject
      Parameters:
      sb - StringBuilder to append the string representation of this object to.
      Returns:
      Same instance of StringBuilder given as parameter.
    • toFullString

      public StringBuilder toFullString(StringBuilder sb)
      Append full string representation of schema to the given StringBuilder. For schema toString() method returns identifier only. To get full schema string one has to call toFullString() method.
      Specified by:
      toFullString in interface Schema
      Parameters:
      sb - StringBuilder to append the string representation of this object to.
      Returns:
      Same instance of StringBuilder given as parameter.
    • toFullString

      public String toFullString()
      Append full string representation of schema to the given StringBuilder. For schema toString() method returns alias only. To get full schema string one has to call toFullString() method.
      Specified by:
      toFullString in interface Schema
      Returns:
      String with full representation of schema.