Package sqlline
Interface SqlLineProperty
-
- All Known Implementing Classes:
BuiltInProperty
public interface SqlLineProperty
Definition of property that may be specified for SqlLine.- See Also:
BuiltInProperty
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SqlLineProperty.Type
Data type of property.static interface
SqlLineProperty.Writer
Property writer.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String[]
BOOLEAN_VALUES
static java.lang.String
DEFAULT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
couldBeStored()
java.lang.Object
defaultValue()
java.util.Set<java.lang.String>
getAvailableValues()
boolean
isReadOnly()
java.lang.String
propertyName()
SqlLineProperty.Type
type()
-
-
-
Field Detail
-
DEFAULT
static final java.lang.String DEFAULT
- See Also:
- Constant Field Values
-
BOOLEAN_VALUES
static final java.lang.String[] BOOLEAN_VALUES
-
-
Method Detail
-
propertyName
java.lang.String propertyName()
-
defaultValue
java.lang.Object defaultValue()
-
isReadOnly
boolean isReadOnly()
-
couldBeStored
boolean couldBeStored()
-
type
SqlLineProperty.Type type()
-
getAvailableValues
java.util.Set<java.lang.String> getAvailableValues()
-
-