java.lang.Comparable<PropertyDescriptor<?>>, PropertyDescriptor<java.io.File>, SingleValuePropertyDescriptor<java.io.File>public final class FileProperty
extends java.lang.Object
| Modifier and Type | Class | Description |
|---|---|---|
static class |
FileProperty.FilePBuilder |
| Constructor | Description |
|---|---|
FileProperty(java.lang.String theName,
java.lang.String theDescription,
java.io.File theDefault,
float theUIOrder) |
Constructor for file property.
|
| Modifier and Type | Method | Description |
|---|---|---|
protected void |
addAttributesTo(java.util.Map<PropertyDescriptorField,java.lang.String> attributes) |
Adds this property's attributes to the map.
|
java.lang.String |
asDelimitedString(T value) |
Formats the object onto a string suitable for storage within the property map.
|
protected java.lang.String |
asString(T value) |
Returns a string representation of the value, even if it's null.
|
java.util.Map<PropertyDescriptorField,java.lang.String> |
attributeValuesById() |
Returns a map representing all the property attributes of the receiver in string form.
|
int |
compareTo(PropertyDescriptor<?> otherProperty) |
|
java.io.File |
createFrom(java.lang.String propertyString) |
Parse a string and returns an instance of a value.
|
protected java.lang.String |
defaultAsString() |
Returns a string representation of the default value.
|
T |
defaultValue() |
Default value to use when the user hasn't specified one or when they wish to revert to a known-good state.
|
java.lang.String |
description() |
Describes the property and the role it plays within the rule it is specified for.
|
boolean |
equals(java.lang.Object obj) |
|
java.lang.String |
errorFor(T value) |
Validation function that returns a diagnostic error message for a sample property value.
|
int |
hashCode() |
|
boolean |
isDefinedExternally() |
True if this descriptor was defined in the ruleset xml.
|
boolean |
isMultiValue() |
Returns whether the property is multi-valued, i.e.
|
java.lang.String |
name() |
The name of the property without spaces as it serves as the key into the property map.
|
static FileProperty.FilePBuilder |
named(java.lang.String name) |
|
int |
preferredRowCount() |
If the datatype is a String then return the preferred number of rows to allocate in the text widget, returns a
value of one for all other types.
|
java.lang.String |
propertyErrorFor(Rule rule) |
A convenience method that returns an error string if the rule holds onto a property value that has a problem.
|
java.lang.String |
toString() |
|
java.lang.Class<java.io.File> |
type() |
Denotes the value datatype.
|
float |
uiOrder() |
Denotes the relative order the property field should occupy if we are using an auto-generated UI to display and
edit property values.
|
protected java.lang.String |
valueErrorFor(T value) |
Checks the value for an error.
|
T |
valueFrom(java.lang.String valueString) |
Returns the value represented by this string.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitattributeValuesById, description, isDefinedExternally, name, preferredRowCount, uiOrderpublic FileProperty(java.lang.String theName,
java.lang.String theDescription,
java.io.File theDefault,
float theUIOrder)
theName - Name of the propertytheDescription - DescriptiontheDefault - Default valuetheUIOrder - UI orderpublic java.lang.Class<java.io.File> type()
PropertyDescriptorpublic java.io.File createFrom(java.lang.String propertyString)
propertyString - String to parsepublic static FileProperty.FilePBuilder named(java.lang.String name)
public final T defaultValue()
PropertyDescriptordefaultValue in interface PropertyDescriptor<T>public final boolean isMultiValue()
PropertyDescriptorAs unary property rule properties will return a value of one, you must use the get/setProperty accessors when working with the actual values. When working with multi-value properties then the get/setProperties accessors must be used.
isMultiValue in interface PropertyDescriptor<T>public java.lang.String asDelimitedString(T value)
PropertyDescriptorasDelimitedString in interface PropertyDescriptor<T>value - Objectprotected java.lang.String asString(T value)
value - The value to describepublic java.lang.String propertyErrorFor(Rule rule)
PropertyDescriptorpropertyErrorFor in interface PropertyDescriptor<T>rule - Rulepublic java.lang.String errorFor(T value)
PropertyDescriptorerrorFor in interface PropertyDescriptor<T>value - The value to check.protected java.lang.String valueErrorFor(T value)
value - Value to checkprotected final java.lang.String defaultAsString()
public final T valueFrom(java.lang.String valueString)
throws java.lang.IllegalArgumentException
PropertyDescriptorvalueFrom in interface PropertyDescriptor<T>valueString - The string to parsejava.lang.IllegalArgumentException - if the given string cannot be parsedpublic java.lang.String description()
PropertyDescriptordescription in interface PropertyDescriptor<T>public float uiOrder()
PropertyDescriptorExample:
name -> 0.0 description 1.0 minValue -> 2.0 maxValue -> 2.1
name: [ ] description: [ ] minimum: [ ] maximum: [ ]uiOrder in interface PropertyDescriptor<T>public final int compareTo(PropertyDescriptor<?> otherProperty)
compareTo in interface java.lang.Comparable<T>public int preferredRowCount()
PropertyDescriptorpreferredRowCount in interface PropertyDescriptor<T>public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String name()
PropertyDescriptorname in interface PropertyDescriptor<T>public final java.util.Map<PropertyDescriptorField,java.lang.String> attributeValuesById()
PropertyDescriptorattributeValuesById in interface PropertyDescriptor<T>protected void addAttributesTo(java.util.Map<PropertyDescriptorField,java.lang.String> attributes)
PropertyDescriptorField.attributes - The map to fillpublic boolean isDefinedExternally()
PropertyDescriptorRuleSetWriter
to write out the property correctly: if it was defined externally, then its definition must be written out,
otherwise only its value.isDefinedExternally in interface PropertyDescriptor<T>Copyright © 2002–2018 PMD. All rights reserved.