Package net.sourceforge.pmd.properties
Class BooleanProperty
- java.lang.Object
-
- net.sourceforge.pmd.properties.BooleanProperty
-
- All Implemented Interfaces:
java.lang.Comparable<PropertyDescriptor<?>>
,PropertyDescriptor<java.lang.Boolean>
,SingleValuePropertyDescriptor<java.lang.Boolean>
@Deprecated public final class BooleanProperty extends java.lang.Object
Deprecated.Use aPropertyDescriptor<Boolean>
instead. A builder is available fromPropertyFactory.booleanProperty(String)
and its overloads. This class will be removed in 7.0.0.Defines a property type that supports single Boolean values.- Version:
- Refactored June 2017 (6.0.0)
- Author:
- Brian Remedios
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BooleanProperty.BooleanPBuilder
Deprecated.UsePropertyFactory.booleanProperty(String)
or its overloads.
-
Constructor Summary
Constructors Constructor Description BooleanProperty(java.lang.String theName, java.lang.String theDescription, boolean defaultValue, float theUIOrder)
Deprecated.UsePropertyFactory.booleanProperty(String)
or its overloads.BooleanProperty(java.lang.String theName, java.lang.String theDescription, java.lang.String defaultBoolStr, float theUIOrder)
Deprecated.UsePropertyFactory.booleanProperty(String)
or its overloads.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 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)
Deprecated.Formats the object onto a string suitable for storage within the property map.protected java.lang.String
asString(T value)
Deprecated.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.lang.Boolean
createFrom(java.lang.String propertyString)
Deprecated.Parse a string and returns an instance of a value.protected java.lang.String
defaultAsString()
Deprecated.Returns a string representation of the default value.T
defaultValue()
Deprecated.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)
Deprecated.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()
Deprecated.Returns whether the property is multi-valued, i.e. an array of strings,java.lang.String
name()
The name of the property without spaces as it serves as the key into the property map.static BooleanProperty.BooleanPBuilder
named(java.lang.String name)
Deprecated.UsePropertyFactory.booleanProperty(String)
or its overloads.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)
Deprecated.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.Boolean>
type()
Deprecated.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)
Deprecated.Checks the value for an error.T
valueFrom(java.lang.String valueString)
Deprecated.Returns the value represented by this string.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sourceforge.pmd.properties.PropertyDescriptor
attributeValuesById, compareTo, description, isDefinedExternally, name, preferredRowCount, uiOrder
-
-
-
-
Constructor Detail
-
BooleanProperty
@Deprecated public BooleanProperty(java.lang.String theName, java.lang.String theDescription, java.lang.String defaultBoolStr, float theUIOrder)
Deprecated.UsePropertyFactory.booleanProperty(String)
or its overloads.Constructor for BooleanProperty limited to a single value. Converts default argument string into a boolean.- Parameters:
theName
- NametheDescription
- DescriptiondefaultBoolStr
- String representing the default value.theUIOrder
- UI order
-
BooleanProperty
@Deprecated public BooleanProperty(java.lang.String theName, java.lang.String theDescription, boolean defaultValue, float theUIOrder)
Deprecated.UsePropertyFactory.booleanProperty(String)
or its overloads.Constructor.- Parameters:
theName
- NametheDescription
- DescriptiondefaultValue
- Default valuetheUIOrder
- UI order
-
-
Method Detail
-
type
public java.lang.Class<java.lang.Boolean> type()
Deprecated.Description copied from interface:PropertyDescriptor
Denotes the value datatype. For multi value properties, this is not the List class but the list's component class.- Returns:
- Class literal of the value type
-
createFrom
public java.lang.Boolean createFrom(java.lang.String propertyString) throws java.lang.IllegalArgumentException
Deprecated.Parse a string and returns an instance of a value.- Parameters:
propertyString
- String to parse- Returns:
- An instance of a value
- Throws:
java.lang.IllegalArgumentException
-
named
@Deprecated public static BooleanProperty.BooleanPBuilder named(java.lang.String name)
Deprecated.UsePropertyFactory.booleanProperty(String)
or its overloads.
-
defaultValue
public final T defaultValue()
Deprecated.Description copied from interface:PropertyDescriptor
Default value to use when the user hasn't specified one or when they wish to revert to a known-good state.- Specified by:
defaultValue
in interfacePropertyDescriptor<T>
- Returns:
- Object
-
isMultiValue
public final boolean isMultiValue()
Deprecated.Description copied from interface:PropertyDescriptor
Returns whether the property is multi-valued, i.e. an array of strings,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.
- Specified by:
isMultiValue
in interfacePropertyDescriptor<T>
- Returns:
- boolean
-
asDelimitedString
public java.lang.String asDelimitedString(T value)
Deprecated.Description copied from interface:PropertyDescriptor
Formats the object onto a string suitable for storage within the property map.- Specified by:
asDelimitedString
in interfacePropertyDescriptor<T>
- Parameters:
value
- Object- Returns:
- String
-
asString
protected java.lang.String asString(T value)
Deprecated.Returns a string representation of the value, even if it's null.- Parameters:
value
- The value to describe- Returns:
- A string representation of the value
-
propertyErrorFor
public java.lang.String propertyErrorFor(Rule rule)
Deprecated.Description copied from interface:PropertyDescriptor
A convenience method that returns an error string if the rule holds onto a property value that has a problem. Returns null otherwise.- Specified by:
propertyErrorFor
in interfacePropertyDescriptor<T>
- Parameters:
rule
- Rule- Returns:
- String
-
errorFor
public java.lang.String errorFor(T value)
Deprecated.Description copied from interface:PropertyDescriptor
Validation function that returns a diagnostic error message for a sample property value. Returns null if the value is acceptable.- Specified by:
errorFor
in interfacePropertyDescriptor<T>
- Parameters:
value
- The value to check.- Returns:
- A diagnostic message.
-
valueErrorFor
protected java.lang.String valueErrorFor(T value)
Deprecated.Checks the value for an error.- Parameters:
value
- Value to check- Returns:
- A diagnostic error message, or null if there's no problem
-
defaultAsString
protected final java.lang.String defaultAsString()
Deprecated.Returns a string representation of the default value.- Returns:
- A string representation of the default value.
-
valueFrom
public final T valueFrom(java.lang.String valueString) throws java.lang.IllegalArgumentException
Deprecated.Description copied from interface:PropertyDescriptor
Returns the value represented by this string.- Specified by:
valueFrom
in interfacePropertyDescriptor<T>
- Parameters:
valueString
- The string to parse- Returns:
- The value represented by the string
- Throws:
java.lang.IllegalArgumentException
- if the given string cannot be parsed
-
description
public java.lang.String description()
Description copied from interface:PropertyDescriptor
Describes the property and the role it plays within the rule it is specified for. Could be used in a tooltip.- Specified by:
description
in interfacePropertyDescriptor<T>
- Returns:
- String
-
uiOrder
public float uiOrder()
Description copied from interface:PropertyDescriptor
Denotes the relative order the property field should occupy if we are using an auto-generated UI to display and edit property values. If the value returned has a non-zero fractional part then this is can be used to place adjacent fields on the same row.- Specified by:
uiOrder
in interfacePropertyDescriptor<T>
- Returns:
- The relative order compared to other properties of the same rule
-
compareTo
public final int compareTo(PropertyDescriptor<?> otherProperty)
- Specified by:
compareTo
in interfacejava.lang.Comparable<T>
- Specified by:
compareTo
in interfacePropertyDescriptor<T>
-
preferredRowCount
public int preferredRowCount()
Description copied from interface:PropertyDescriptor
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. Useful for multi-line XPATH editors.- Specified by:
preferredRowCount
in interfacePropertyDescriptor<T>
- Returns:
- int
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
name
public java.lang.String name()
Description copied from interface:PropertyDescriptor
The name of the property without spaces as it serves as the key into the property map.- Specified by:
name
in interfacePropertyDescriptor<T>
- Returns:
- String
-
attributeValuesById
public final java.util.Map<PropertyDescriptorField,java.lang.String> attributeValuesById()
Description copied from interface:PropertyDescriptor
Returns a map representing all the property attributes of the receiver in string form.- Specified by:
attributeValuesById
in interfacePropertyDescriptor<T>
- Returns:
- map
-
addAttributesTo
protected void addAttributesTo(java.util.Map<PropertyDescriptorField,java.lang.String> attributes)
Adds this property's attributes to the map. Subclasses can override this to add morePropertyDescriptorField
.- Parameters:
attributes
- The map to fill
-
isDefinedExternally
public boolean isDefinedExternally()
Description copied from interface:PropertyDescriptor
True if this descriptor was defined in the ruleset xml. This precision is necessary for theRuleSetWriter
to write out the property correctly: if it was defined externally, then its definition must be written out, otherwise only its value.- Specified by:
isDefinedExternally
in interfacePropertyDescriptor<T>
- Returns:
- True if the descriptor was defined in xml
-
-