Uses of Interface
net.sourceforge.pmd.properties.PropertyDescriptor
-
-
Uses of PropertyDescriptor in net.sourceforge.pmd.lang
Methods in net.sourceforge.pmd.lang with parameters of type PropertyDescriptor Modifier and Type Method Description protected voidParserOptions. defineProperty(PropertyDescriptor<?> propertyDescriptor)protected <T> voidParserOptions. defineProperty(PropertyDescriptor<T> propertyDescriptor, T initialValue)<T> TParserOptions. getProperty(PropertyDescriptor<T> propertyDescriptor)protected <T> voidParserOptions. setProperty(PropertyDescriptor<T> propertyDescriptor, T initialValue) -
Uses of PropertyDescriptor in net.sourceforge.pmd.lang.rule
Methods in net.sourceforge.pmd.lang.rule that return PropertyDescriptor Modifier and Type Method Description PropertyDescriptor<?>AbstractDelegateRule. getPropertyDescriptor(String name)Deprecated.Methods in net.sourceforge.pmd.lang.rule that return types with arguments of type PropertyDescriptor Modifier and Type Method Description Map<PropertyDescriptor<?>,Object>RuleReference. getOverriddenPropertiesByPropertyDescriptor()List<PropertyDescriptor<?>>RuleReference. getOverriddenPropertyDescriptors()Map<PropertyDescriptor<?>,Object>AbstractDelegateRule. getPropertiesByPropertyDescriptor()Deprecated.List<PropertyDescriptor<?>>AbstractDelegateRule. getPropertyDescriptors()Deprecated.Set<PropertyDescriptor<?>>AbstractDelegateRule. ignoredProperties()Deprecated.Methods in net.sourceforge.pmd.lang.rule with parameters of type PropertyDescriptor Modifier and Type Method Description voidAbstractDelegateRule. definePropertyDescriptor(PropertyDescriptor<?> propertyDescriptor)Deprecated.voidRuleReference. definePropertyDescriptor(PropertyDescriptor<?> propertyDescriptor)<T> TAbstractDelegateRule. getProperty(PropertyDescriptor<T> propertyDescriptor)Deprecated.booleanAbstractDelegateRule. hasDescriptor(PropertyDescriptor<?> descriptor)Deprecated.booleanRuleReference. hasDescriptor(PropertyDescriptor<?> descriptor)booleanRuleReference. hasOverriddenProperty(PropertyDescriptor<?> descriptor)Deprecated.booleanAbstractDelegateRule. isPropertyOverridden(PropertyDescriptor<?> propertyDescriptor)Deprecated.booleanRuleReference. isPropertyOverridden(PropertyDescriptor<?> descriptor)<T> voidAbstractDelegateRule. setProperty(PropertyDescriptor<T> propertyDescriptor, T value)Deprecated.<T> voidRuleReference. setProperty(PropertyDescriptor<T> propertyDescriptor, T value)voidRuleReference. useDefaultValueFor(PropertyDescriptor<?> desc)Deprecated. -
Uses of PropertyDescriptor in net.sourceforge.pmd.lang.rule.xpath
Fields in net.sourceforge.pmd.lang.rule.xpath with type parameters of type PropertyDescriptor Modifier and Type Field Description protected Map<PropertyDescriptor<?>,Object>AbstractXPathRuleQuery. propertiesDeprecated.The properties.Method parameters in net.sourceforge.pmd.lang.rule.xpath with type arguments of type PropertyDescriptor Modifier and Type Method Description voidAbstractXPathRuleQuery. setProperties(Map<PropertyDescriptor<?>,Object> properties)Deprecated.voidXPathRuleQuery. setProperties(Map<PropertyDescriptor<?>,Object> properties)Deprecated.Set the properties to use during the XPath query. -
Uses of PropertyDescriptor in net.sourceforge.pmd.properties
Subinterfaces of PropertyDescriptor in net.sourceforge.pmd.properties Modifier and Type Interface Description interfaceEnumeratedPropertyDescriptor<E,T>Deprecated.Will be removed with 7.0.0.interfaceMultiValuePropertyDescriptor<V>Deprecated.The hard divide between multi- and single-value properties will be removed with 7.0.0interfaceNumericPropertyDescriptor<T>Deprecated.Will be removed with 7.0.0.interfacePackagedPropertyDescriptor<T>Deprecated.interfaceSingleValuePropertyDescriptor<T>Deprecated.The hard divide between multi- and single-value properties will be removed with 7.0.0Classes in net.sourceforge.pmd.properties that implement PropertyDescriptor Modifier and Type Class Description classBooleanMultiPropertyDeprecated.Not useful, will be removed with 7.0.0classBooleanPropertyDeprecated.Use aPropertyDescriptor<Boolean>instead.classCharacterMultiPropertyDeprecated.Use aPropertyDescriptor<List<Character>>.classCharacterPropertyDeprecated.Use aPropertyDescriptor<Character>.classDoubleMultiPropertyDeprecated.Use aPropertyDescriptor<List<Double>>instead.classDoublePropertyDeprecated.Use aPropertyDescriptor<Double>instead.classEnumeratedMultiProperty<E>Deprecated.Use aPropertyDescriptor<List<E>>instead.classEnumeratedProperty<E>Deprecated.Use aPropertyDescriptor<E>instead.classFilePropertyDeprecated.Will be removed with 7.0.0 with no scheduled replacementclassFloatMultiPropertyDeprecated.Use aPropertyDescriptor<List<Double>>instead.classFloatPropertyDeprecated.UsePropertyFactory.doubleProperty(String)instead.classIntegerMultiPropertyDeprecated.Use aPropertyDescriptor<List<Integer>>instead.classIntegerPropertyDeprecated.Use aPropertyDescriptor<Integer>instead.classLongMultiPropertyDeprecated.Use aPropertyDescriptor<List<Long>>instead.classLongPropertyDeprecated.Use aPropertyDescriptor<Long>instead.classMethodMultiPropertyDeprecated.Will be removed with 7.0.0 with no scheduled replacementclassMethodPropertyDeprecated.Not useful, will be remove by 7.0.0classRegexPropertyDeprecated.Use aPropertyDescriptor<Pattern>.classStringMultiPropertyDeprecated.Use aPropertyDescriptor<List<String>>.classStringPropertyDeprecated.Use aPropertyDescriptor<String>.classTypeMultiPropertyDeprecated.Will be removed with 7.0.0 with no scheduled replacement yetclassTypePropertyDeprecated.Will be removed with 7.0.0 with no scheduled replacement yetFields in net.sourceforge.pmd.properties with type parameters of type PropertyDescriptor Modifier and Type Field Description protected List<PropertyDescriptor<?>>AbstractPropertySource. propertyDescriptorsDeprecated.Will be made private finalprotected Map<PropertyDescriptor<?>,Object>AbstractPropertySource. propertyValuesByDescriptorDeprecated.Will be made private finalMethods in net.sourceforge.pmd.properties that return PropertyDescriptor Modifier and Type Method Description abstract PropertyDescriptor<T>PropertyBuilder. build()Builds the descriptor and returns it.PropertyDescriptor<C>PropertyBuilder.GenericCollectionPropertyBuilder. build()PropertyDescriptor<?>AbstractPropertySource. getPropertyDescriptor(String name)PropertyDescriptor<?>PropertySource. getPropertyDescriptor(String name)Get the PropertyDescriptor for the given property name.Methods in net.sourceforge.pmd.properties that return types with arguments of type PropertyDescriptor Modifier and Type Method Description protected List<PropertyDescriptor<?>>AbstractPropertySource. copyPropertyDescriptors()Deprecated.protected Map<PropertyDescriptor<?>,Object>AbstractPropertySource. copyPropertyValues()Map<PropertyDescriptor<?>,Object>AbstractPropertySource. getOverriddenPropertiesByPropertyDescriptor()Map<PropertyDescriptor<?>,Object>PropertySource. getOverriddenPropertiesByPropertyDescriptor()Returns a modifiable map of the property descriptors that don't use default values, to their overridden value.List<PropertyDescriptor<?>>AbstractPropertySource. getOverriddenPropertyDescriptors()List<PropertyDescriptor<?>>PropertySource. getOverriddenPropertyDescriptors()Returns a modifiable list of the property descriptors that don't use default values.Map<PropertyDescriptor<?>,Object>AbstractPropertySource. getPropertiesByPropertyDescriptor()Map<PropertyDescriptor<?>,Object>PropertySource. getPropertiesByPropertyDescriptor()Returns an unmodifiable map of descriptors to property values for the current receiver.List<PropertyDescriptor<?>>AbstractPropertySource. getPropertyDescriptors()List<PropertyDescriptor<?>>PropertySource. getPropertyDescriptors()Get the descriptors of all defined properties.Set<PropertyDescriptor<?>>AbstractPropertySource. ignoredProperties()Deprecated.Set<PropertyDescriptor<?>>PropertySource. ignoredProperties()Deprecated.Has no real utility, will be removed by 7.0.0Methods in net.sourceforge.pmd.properties with parameters of type PropertyDescriptor Modifier and Type Method Description intPropertyDescriptor. compareTo(PropertyDescriptor<?> o)Deprecated.Comparing property descriptors is not useful within PMDvoidAbstractPropertySource. definePropertyDescriptor(PropertyDescriptor<?> propertyDescriptor)voidPropertySource. definePropertyDescriptor(PropertyDescriptor<?> propertyDescriptor)Defines a new property.<T> TAbstractPropertySource. getProperty(PropertyDescriptor<T> propertyDescriptor)<T> TPropertySource. getProperty(PropertyDescriptor<T> propertyDescriptor)Get the typed value for the given property.booleanAbstractPropertySource. hasDescriptor(PropertyDescriptor<?> descriptor)booleanPropertySource. hasDescriptor(PropertyDescriptor<?> descriptor)Returns whether the specified property is defined on this property source, in which case it can be set or retrieved withPropertySource.getProperty(PropertyDescriptor)andPropertySource.setProperty(PropertyDescriptor, Object).booleanAbstractPropertySource. isPropertyOverridden(PropertyDescriptor<?> propertyDescriptor)booleanPropertySource. isPropertyOverridden(PropertyDescriptor<?> propertyDescriptor)Returns true if the given property has been set to a value somewhere in the XML.<T> voidAbstractPropertySource. setProperty(PropertyDescriptor<T> propertyDescriptor, T value)<T> voidPropertySource. setProperty(PropertyDescriptor<T> propertyDescriptor, T value)Set the property value specified.voidAbstractPropertySource. useDefaultValueFor(PropertyDescriptor<?> desc)Deprecated.voidPropertySource. useDefaultValueFor(PropertyDescriptor<?> desc)Deprecated.Has no real utility, and the name is confusing, will be removed by 7.0.0 -
Uses of PropertyDescriptor in net.sourceforge.pmd.properties.builders
Methods in net.sourceforge.pmd.properties.builders that return PropertyDescriptor Modifier and Type Method Description abstract PropertyDescriptor<E>PropertyDescriptorBuilder. build()Deprecated.Builds the descriptor and returns it.PropertyDescriptor<E>PropertyDescriptorBuilderConversionWrapper. build(Map<PropertyDescriptorField,String> fields)Deprecated.PropertyDescriptor<E>PropertyDescriptorExternalBuilder. build(Map<PropertyDescriptorField,String> fields)Deprecated.Builds a descriptor. -
Uses of PropertyDescriptor in net.sourceforge.pmd.renderers
Fields in net.sourceforge.pmd.renderers declared as PropertyDescriptor Modifier and Type Field Description static PropertyDescriptor<Boolean>HTMLRenderer. HTML_EXTENSION -
Uses of PropertyDescriptor in net.sourceforge.pmd.rules
Methods in net.sourceforge.pmd.rules with parameters of type PropertyDescriptor Modifier and Type Method Description voidRuleBuilder. defineProperty(PropertyDescriptor<?> descriptor)Deprecated.
-