Uses of Class
cdc.util.data.Attribute
-
Packages that use Attribute Package Description cdc.util.data cdc.util.data.util -
-
Uses of Attribute in cdc.util.data
Fields in cdc.util.data with type parameters of type Attribute Modifier and Type Field Description static Comparator<Attribute>Attribute. NAME_COMPARATORA Comparator of attributes that compares names.Methods in cdc.util.data that return Attribute Modifier and Type Method Description AttributeElement. getAttribute(String name)Returns the attribute that has a particular name, ornull.AttributeElement. getAttributeAt(int index)Returns the attribute at a given index.AttributeElement. removeAttribute(String name)Removes an attribute identified by its name.Methods in cdc.util.data that return types with arguments of type Attribute Modifier and Type Method Description List<Attribute>Element. getAttributes()List<Attribute>Element. getSortedAttributes()static Predicate<Attribute>Attribute. named(String name)Creates a Predicate that accepts Attributes with a given name.static Predicate<Attribute>Attribute. named(String... names)Creates a Predicate that accepts Attributes with a name belonging to an array.static Predicate<Attribute>Attribute. named(Set<String> names)Creates a Predicate that accepts Attributes with a name belonging to a set.Methods in cdc.util.data with parameters of type Attribute Modifier and Type Method Description voidElement. addAttribute(Attribute attribute)Adds an attribute.voidElement. addAttributes(Attribute... attributes)Adds an array of attributes to this element.Method parameters in cdc.util.data with type arguments of type Attribute Modifier and Type Method Description voidElement. addAttributes(Collection<Attribute> attributes)Adds all attributes of a collection to this element.voidElement. removeAttributes(Predicate<Attribute> predicate)voidElement. removeAttributes(Predicate<Attribute> predicate, boolean recurse)Constructors in cdc.util.data with parameters of type Attribute Constructor Description Attribute(Attribute other) -
Uses of Attribute in cdc.util.data.util
Method parameters in cdc.util.data.util with type arguments of type Attribute Modifier and Type Method Description static voidDataUtils. sortAttributes(Parent parent, Comparator<Attribute> comparator, Evaluator<? super Parent> evaluator)Sorts attributes of elements using a user defined sorter.
-