public class DgnTagValue extends Object
DgnTagValue class
Constructor and Description |
---|
DgnTagValue(int type,
byte[] rawData,
int nDataOffset)
Initializes a new instance of the
DgnTagValue class. |
Modifier and Type | Method and Description |
---|---|
double |
getFloatValue()
Gets or sets the float value.
|
long |
getIntegerValue()
Gets or sets the integer value.
|
String |
getStringValue()
Gets or sets the string value.
|
int |
getType()
Gets or sets tag type
|
void |
setFloatValue(double value)
Gets or sets the float value.
|
void |
setIntegerValue(long value)
Gets or sets the integer value.
|
void |
setStringValue(String value)
Gets or sets the string value.
|
void |
setType(int value)
Gets or sets tag type
|
public DgnTagValue(int type, byte[] rawData, int nDataOffset)
Initializes a new instance of the DgnTagValue
class.
type
- The type.rawData
- The raw data.nDataOffset
- The n data offset.public final int getType()
Gets or sets tag type
public final void setType(int value)
Gets or sets tag type
public final String getStringValue()
Gets or sets the string value.
public final void setStringValue(String value)
Gets or sets the string value.
value
- The string value.public final long getIntegerValue()
Gets or sets the integer value.
public final void setIntegerValue(long value)
Gets or sets the integer value.
value
- The integer value.public final double getFloatValue()
Gets or sets the float value.
public final void setFloatValue(double value)
Gets or sets the float value.
value
- The float value.