Class DataResultSet.Field

java.lang.Object
oracle.stellent.ridc.model.DataResultSet.Field
Enclosing interface:
DataResultSet

public static class DataResultSet.Field extends Object
A Field represents definition (e.g. a name, type, etc.) for a column of cells.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
    All available types of field.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Field(String name)
    Construct a field with the given name
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
    return maximum length of field in characters when translated to a string if field is fixed length.
    return the name of the field
    int
    return the scale for DECIMAL field
    return the field type (corresponds to an intersection of MS Access and JDBC field types).
    int
     
    boolean
    true if field has a maximum length when translated to a string.
    void
    setFixedLen(boolean fixedLen)
    set FixedLen which is a maximum length when translated to a string.
    void
    setMaxLen(int maxLen)
    set MaxLen which is maximum length of field in characters when translated to a string if field is fixed length.
    void
     
    void
    setScale(int scale)
    set the scale for DECIMAL field
    void
    set type

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Field

      public Field(String name)
      Construct a field with the given name
      Parameters:
      name - the field name
  • Method Details

    • getName

      public String getName()
      return the name of the field
      Returns:
      the name of the field
    • setName

      public void setName(String name)
    • getType

      public DataResultSet.Field.Type getType()
      return the field type (corresponds to an intersection of MS Access and JDBC field types).
      Returns:
      the field type (corresponds to an intersection of MS Access and JDBC field types).
    • setType

      public void setType(DataResultSet.Field.Type type)
      set type
      Parameters:
      type - the field type (corresponds to an intersection of MS Access and JDBC field types).
    • isFixedLen

      public boolean isFixedLen()
      true if field has a maximum length when translated to a string.
      Returns:
      true if field has a maximum length when translated to a string.
    • setFixedLen

      public void setFixedLen(boolean fixedLen)
      set FixedLen which is a maximum length when translated to a string.
      Parameters:
      fixedLen - true if field has a maximum length when translated to a string.
    • getMaxLen

      public int getMaxLen()
      return maximum length of field in characters when translated to a string if field is fixed length.
      Returns:
      maximum length of field in characters when translated to a string if field is fixed length.
    • setMaxLen

      public void setMaxLen(int maxLen)
      set MaxLen which is maximum length of field in characters when translated to a string if field is fixed length.
      Parameters:
      maxLen - maximum length of field in characters when translated to a string if field is fixed length.
    • getScale

      public int getScale()
      return the scale for DECIMAL field
      Returns:
      the scale for DECIMAL field
    • setScale

      public void setScale(int scale)
      set the scale for DECIMAL field
      Parameters:
      scale - the scale to be set for a DECIMAL field
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object