Class FieldDescriptor
- java.lang.Object
-
- org.apache.sedona.core.formatMapper.shapefileParser.parseUtils.dbf.FieldDescriptor
-
- All Implemented Interfaces:
Serializable
public class FieldDescriptor extends Object implements Serializable
The Class FieldDescriptor.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FieldDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte
getFieldDecimalCount()
Gets the field decimal count.int
getFieldLength()
Gets the field length.String
getFieldName()
Gets the field name.byte
getFieldType()
Gets the field type.void
setFieldDecimalCount(byte fieldDecimalCount)
Sets the field decimal count.void
setFieldLength(int fieldLength)
Sets the field length.void
setFieldName(String fieldName)
Sets the field name.void
setFieldType(byte fieldType)
Sets the field type.
-
-
-
Method Detail
-
getFieldName
public String getFieldName()
Gets the field name.- Returns:
- the field name
-
setFieldName
public void setFieldName(String fieldName)
Sets the field name.- Parameters:
fieldName
- the new field name
-
getFieldType
public byte getFieldType()
Gets the field type.- Returns:
- the field type
-
setFieldType
public void setFieldType(byte fieldType)
Sets the field type.- Parameters:
fieldType
- the new field type
-
getFieldLength
public int getFieldLength()
Gets the field length.- Returns:
- the field length
-
setFieldLength
public void setFieldLength(int fieldLength)
Sets the field length.- Parameters:
fieldLength
- the new field length
-
getFieldDecimalCount
public byte getFieldDecimalCount()
Gets the field decimal count.- Returns:
- the field decimal count
-
setFieldDecimalCount
public void setFieldDecimalCount(byte fieldDecimalCount)
Sets the field decimal count.- Parameters:
fieldDecimalCount
- the new field decimal count
-
-