public final class CharacterMultiProperty
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
CharacterMultiProperty.CharacterMultiPBuilder |
DEFAULT_DELIMITER, DEFAULT_NUMERIC_DELIMITER
Constructor and Description |
---|
CharacterMultiProperty(java.lang.String theName,
java.lang.String theDescription,
java.lang.Character[] defaultValues,
float theUIOrder,
char delimiter)
Constructor using an array of defaults.
|
CharacterMultiProperty(java.lang.String theName,
java.lang.String theDescription,
java.util.List<java.lang.Character> defaultValues,
float theUIOrder,
char delimiter)
Constructor using a list of defaults.
|
Modifier and Type | Method and 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.Character |
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 CharacterMultiProperty.CharacterMultiPBuilder |
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.Character> |
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(V value)
Checks a single value for a "missing value" error.
|
java.util.List<java.lang.Character> |
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 CharacterMultiProperty(java.lang.String theName, java.lang.String theDescription, java.lang.Character[] defaultValues, float theUIOrder, char delimiter)
theName
- NametheDescription
- DescriptiondefaultValues
- Array of defaultstheUIOrder
- UI orderdelimiter
- The delimiter to usejava.lang.IllegalArgumentException
- if the delimiter is in the default valuespublic CharacterMultiProperty(java.lang.String theName, java.lang.String theDescription, java.util.List<java.lang.Character> defaultValues, float theUIOrder, char delimiter)
theName
- NametheDescription
- DescriptiondefaultValues
- List of defaultstheUIOrder
- UI orderdelimiter
- The delimiter to usejava.lang.IllegalArgumentException
- if the delimiter is in the default valuesprotected java.lang.Character createFrom(java.lang.String toParse)
toParse
- String to parsepublic java.lang.Class<java.lang.Character> type()
PropertyDescriptor
public java.util.List<java.lang.Character> valueFrom(java.lang.String valueString) throws java.lang.IllegalArgumentException
PropertyDescriptor
valueFrom
in interface PropertyDescriptor<java.util.List<java.lang.Character>>
valueString
- The string to parsejava.lang.IllegalArgumentException
- if the given string cannot be parsedpublic static CharacterMultiProperty.CharacterMultiPBuilder 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<java.util.List<V>>
public java.lang.String propertyErrorFor(Rule rule)
PropertyDescriptor
propertyErrorFor
in interface PropertyDescriptor<java.util.List<V>>
rule
- Rulepublic java.lang.String errorFor(java.util.List<V> values)
PropertyDescriptor
errorFor
in interface PropertyDescriptor<java.util.List<V>>
values
- The value to check.protected java.lang.String valueErrorFor(V value)
value
- Value to checkprotected java.lang.String defaultAsString()
public java.util.List<V> defaultValue()
PropertyDescriptor
defaultValue
in interface PropertyDescriptor<java.util.List<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<java.util.List<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<PropertyDescriptor<?>>
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–2017 PMD. All rights reserved.