java.lang.Object
nectar.record.Record
nectar.record.ImageFormatRecord
- All Implemented Interfaces:
- java.io.Serializable
- public class ImageFormatRecord
- extends Record
The base model element for image format records.
| Fields inherited from class nectar.record.Record |
dataTables, FIELD_CHILD_ID, FIELD_CREATED_BY, FIELD_CREATED_DATE, FIELD_MODIFIED_DATE, FIELD_ORDER_BY, FIELD_OWNER, FIELD_PROJECT, FIELD_RECORD_ID, FIELD_STATUS, FIELD_TYPE, fields, TOP_LEVEL_FIELD_NAMES |
| Methods inherited from class nectar.record.Record |
copy, getCreatedBy, getCreatedDate, getFieldNames, getFields, getId, getModifiedDate, getOrderBy, getOwner, getProject, getStatus, getTables, load, setCreatedBy, setCreatedDate, setId, setModifiedDate, setOrderBy, setOwner, setProject, setStatus, setupCreate, toMap, toObjectMap |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FIELD_URL
public static final java.lang.String FIELD_URL
- See Also:
- Constant Field Values
FIELD_FORMAT
public static final java.lang.String FIELD_FORMAT
- See Also:
- Constant Field Values
FIELD_WIDTH
public static final java.lang.String FIELD_WIDTH
- See Also:
- Constant Field Values
FIELD_HEIGHT
public static final java.lang.String FIELD_HEIGHT
- See Also:
- Constant Field Values
TABLE
public static java.lang.String TABLE
url
protected nectar.record.datatypes.RecordString url
format
protected nectar.record.datatypes.RecordImageFormatEnum format
width
protected nectar.record.datatypes.RecordInteger width
height
protected nectar.record.datatypes.RecordInteger height
ImageFormatRecord
public ImageFormatRecord()
- Creates a new instance of ImageFormatRecord
getUrl
public java.lang.String getUrl()
setUrl
public void setUrl(java.lang.String value)
throws RecordInvalidInputException
getFormat
public java.lang.String getFormat()
setFormat
public void setFormat(java.lang.String value)
throws RecordInvalidInputException
getHeight
public java.lang.Long getHeight()
setHeight
public void setHeight(java.lang.Long value)
throws RecordInvalidInputException
getWidth
public java.lang.Long getWidth()
setWidth
public void setWidth(java.lang.Long value)
throws RecordInvalidInputException
getRecordType
public java.lang.String getRecordType()
- Description copied from class:
Record
- Returns the type String for this Record.
- Specified by:
getRecordType in class Record
getView
public nectar.view.RecordView getView()
- Returns the appropriate RecordView instance for this record. You can safely typecast the return value to the
RecordView class associated to this record.
- Specified by:
getView in class Record