public abstract class AbstractDataObjField extends AbstractDataField implements DataObjField
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object value1,
Object value2)
Compares two specified field values for equality.
|
String |
getString(RecordCursor cursor) |
Object |
parseString(String value)
Parses string representation of specified field value.
|
void |
read(com.devexperts.io.BufferedInput in,
RecordCursor cursor) |
void |
setString(RecordCursor cursor,
String value) |
String |
toString(Object value)
Returns string representation of the specified field value.
|
void |
write(com.devexperts.io.BufferedOutput out,
RecordCursor cursor) |
getDefaultPropertyName, getIndex, getLocalName, getName, getPropertyName, getRecord, getSerialType, setRecord, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
readObj, readObj, writeObj, writeObj
getIndex, getLocalName, getName, getPropertyName, getRecord, getSerialType
public String getString(RecordCursor cursor)
public void setString(RecordCursor cursor, String value)
public void write(com.devexperts.io.BufferedOutput out, RecordCursor cursor) throws IOException
write
in interface DataField
IOException
public void read(com.devexperts.io.BufferedInput in, RecordCursor cursor) throws IOException
read
in interface DataField
IOException
public String toString(Object value)
String.valueOf(value)
.toString
in interface DataObjField
public Object parseString(String value)
value
.parseString
in interface DataObjField
public boolean equals(Object value1, Object value2)
value1 == value2 || (value1 != null && value1.equals(value2))
.equals
in interface DataObjField
Copyright © 2002–2025 Devexperts LLC. All rights reserved.