java.lang.Comparable<PropertyDescriptor<?>>
, MultiValuePropertyDescriptor<java.lang.String>
, PropertyDescriptor<java.util.List<java.lang.String>>
public final class StringMultiProperty
extends java.lang.Object
Modifier and Type | Class | Description |
---|---|---|
static class |
StringMultiProperty.StringMultiPBuilder |
DEFAULT_DELIMITER, DEFAULT_NUMERIC_DELIMITER
Constructor | Description |
---|---|
StringMultiProperty(java.lang.String theName,
java.lang.String theDescription,
java.lang.String[] defaultValues,
float theUIOrder,
char delimiter) |
Constructor using an array of defaults.
|
StringMultiProperty(java.lang.String theName,
java.lang.String theDescription,
java.util.List<java.lang.String> defaultValues,
float theUIOrder,
char delimiter) |
Constructor using a list of defaults.
|
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(java.util.List<V> values) |
Formats the object onto a string suitable for storage within the property map.
|
protected java.lang.String |
asString(V 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) |
|
protected java.lang.String |
createFrom(java.lang.String toParse) |
Parse a string and returns an instance of a single value (not a list).
|
protected java.lang.String |
defaultAsString() |
Returns a string representation of the default value.
|
java.util.List<V> |
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(java.util.List<V> values) |
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.
|
char |
multiValueDelimiter() |
Return the character being used to delimit multiple property values within a single string.
|
java.lang.String |
name() |
The name of the property without spaces as it serves as the key into the property map.
|
static StringMultiProperty.StringMultiPBuilder |
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.lang.String> |
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(java.lang.String value) |
Checks a single value for a "missing value" error.
|
java.util.List<java.lang.String> |
valueFrom(java.lang.String valueString) |
Returns the value represented by this string.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
attributeValuesById, description, isDefinedExternally, name, preferredRowCount, uiOrder
public StringMultiProperty(java.lang.String theName, java.lang.String theDescription, java.lang.String[] defaultValues, float theUIOrder, char delimiter)
theName
- NametheDescription
- DescriptiondefaultValues
- Array of defaultstheUIOrder
- UI orderdelimiter
- The delimiter to usejava.lang.IllegalArgumentException
- if a default value contains the delimiterjava.lang.NullPointerException
- if the defaults array is nullpublic StringMultiProperty(java.lang.String theName, java.lang.String theDescription, java.util.List<java.lang.String> defaultValues, float theUIOrder, char delimiter)
theName
- NametheDescription
- DescriptiondefaultValues
- List of defaultstheUIOrder
- UI orderdelimiter
- The delimiter to usegjava.lang.IllegalArgumentException
- if a default value contains the delimiterjava.lang.NullPointerException
- if the defaults array is nullpublic java.lang.Class<java.lang.String> type()
PropertyDescriptor
public java.util.List<java.lang.String> valueFrom(java.lang.String valueString)
PropertyDescriptor
valueFrom
in interface PropertyDescriptor<java.util.List<java.lang.String>>
valueString
- The string to parseprotected java.lang.String valueErrorFor(java.lang.String value)
value
- Value to checkprotected java.lang.String createFrom(java.lang.String toParse)
toParse
- String to parsepublic static StringMultiProperty.StringMultiPBuilder named(java.lang.String name)
public final boolean isMultiValue()
PropertyDescriptor
As 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<V>
public java.lang.String propertyErrorFor(Rule rule)
PropertyDescriptor
propertyErrorFor
in interface PropertyDescriptor<V>
rule
- Rulepublic java.lang.String errorFor(java.util.List<V> values)
PropertyDescriptor
errorFor
in interface PropertyDescriptor<V>
values
- The value to check.protected java.lang.String defaultAsString()
public java.util.List<V> defaultValue()
PropertyDescriptor
defaultValue
in interface PropertyDescriptor<V>
public char multiValueDelimiter()
MultiValuePropertyDescriptor
multiValueDelimiter
in interface MultiValuePropertyDescriptor<V>
protected java.lang.String asString(V value)
value
- The value to describepublic final java.lang.String asDelimitedString(java.util.List<V> values)
PropertyDescriptor
asDelimitedString
in interface PropertyDescriptor<V>
values
- Objectprotected void addAttributesTo(java.util.Map<PropertyDescriptorField,java.lang.String> attributes)
PropertyDescriptorField
.attributes
- The map to fillpublic java.lang.String description()
PropertyDescriptor
description
in interface PropertyDescriptor<T>
public float uiOrder()
PropertyDescriptor
Example:
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()
PropertyDescriptor
preferredRowCount
in interface PropertyDescriptor<T>
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String name()
PropertyDescriptor
name
in interface PropertyDescriptor<T>
public final java.util.Map<PropertyDescriptorField,java.lang.String> attributeValuesById()
PropertyDescriptor
attributeValuesById
in interface PropertyDescriptor<T>
public boolean isDefinedExternally()
PropertyDescriptor
RuleSetWriter
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.