public interface PathMetaData
Path
object.Modifier and Type | Method and Description |
---|---|
int |
getFieldCount()
Returns the number of fields in this
Path object. |
java.lang.String |
getFieldName(int field)
Gets the name of the specified field.
|
int |
getFieldType(int field)
Gets the DLI type of the specified field.
|
int |
getPrecision(int field)
Gets the specified field size of the designated field.
|
int |
getScale(int field)
Gets the number of digits to the right of the decimal point in the
specified field.
|
java.lang.String |
getSegmentName(int field)
Gets the segment name of the specified field.
|
boolean |
isSearchable(int field)
Indicates whether the designated field can be used in a segment search
argument (SSA).
|
boolean |
isSigned(int field)
Indicates whether values in the designated field are signed numbers.
|
int getFieldCount()
Path
object.java.lang.String getFieldName(int field) throws DLIException
field
- the first field is 1, the second is 2, ...DLIException
- if a processing error occursint getFieldType(int field) throws DLIException
field
- the first field is 1, the second is 2, ...DLIException
- if a processing error occursint getPrecision(int field) throws DLIException
field
- the first field is 1, the second is 2, ...DLIException
- if a processing error occursint getScale(int field) throws DLIException
field
- the first field is 1, the second is 2, ...DLIException
- if a processing error occursjava.lang.String getSegmentName(int field) throws DLIException
field
- the first field is 1, the second is 2, ...DLIException
- if a processing error occursboolean isSearchable(int field) throws DLIException
field
- the first field is 1, the second is 2, ...true
if so; false
otherwiseDLIException
- if a processing error occursboolean isSigned(int field) throws DLIException
field
- the first field is 1, the second is 2, ...true
if so; false
otherwiseDLIException
- if a processing error occurs