Package oracle.stellent.ridc.model
Class DataResultSet.Field
java.lang.Object
oracle.stellent.ridc.model.DataResultSet.Field
- Enclosing interface:
- DataResultSet
A Field represents definition (e.g. a name, type, etc.) for a column of cells.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
All available types of field. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
return maximum length of field in characters when translated to a string if field is fixed length.getName()
return the name of the fieldint
getScale()
return the scale for DECIMAL fieldgetType()
return the field type (corresponds to an intersection of MS Access and JDBC field types).int
hashCode()
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 fieldvoid
set type
-
Constructor Details
-
Field
Construct a field with the given name- Parameters:
name
- the field name
-
-
Method Details
-
getName
return the name of the field- Returns:
- the name of the field
-
setName
-
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
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
-
hashCode
public int hashCode()
-