java.lang.Object | |
↳ | com.pnfsoftware.jeb.core.properties.impl.PropertyTypeBoolean |
Boolean property type.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Object |
afterRead(IPropertyDefinition def, Object value)
Post-processing to be done after reading a value.
| ||||||||||
static PropertyTypeBoolean | create(Boolean def) | ||||||||||
static PropertyTypeBoolean |
create()
Define a boolean property that defaults to 'false'
| ||||||||||
boolean | equals(Object obj) | ||||||||||
Boolean |
getDefault()
Get the default value.
| ||||||||||
String |
getName()
Get the type name.
| ||||||||||
int | hashCode() | ||||||||||
String | toString() | ||||||||||
boolean |
validate(Object value)
Validate a property value.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.pnfsoftware.jeb.core.properties.IPropertyType
| |||||||||||
From interface
com.pnfsoftware.jeb.core.properties.IPropertyTypeBoolean
|
Post-processing to be done after reading a value. This method should only be called after a
successful call to validate(Object)
.
value | must not be null |
---|
Define a boolean property that defaults to 'false'
Get the default value.
Get the type name.
Validate a property value.
value | the property value |
---|