Class MutableAttributeImpl
- All Implemented Interfaces:
Attribute
,MutableAttribute
,Immutable<Attribute,
,MutableAttribute> Mutable<MutableAttribute,
Attribute>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final String
private String
private final char
private final char
private LinkedHashMap
<String, String> Fields inherited from interface com.vladsch.flexmark.util.html.Attribute
CLASS_ATTR, ID_ATTR, LINK_STATUS_ATTR, NAME_ATTR, NO_FOLLOW, NON_RENDERING_WHEN_EMPTY, NUL, STYLE_ATTR, TARGET_ATTR, TITLE_ATTR
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
MutableAttributeImpl
(CharSequence name, CharSequence value, char valueListDelimiter, char valueNameDelimiter) -
Method Summary
Modifier and TypeMethodDescriptionboolean
containsValue
(CharSequence value) See if the attribute contains the value (if attribute has list delimiter set) or is equal to the value if no list delimiter is setcopy()
boolean
private void
forEachValue
(CharSequence value, BiConsumer<String, String> consumer) getName()
getValue()
char
char
int
hashCode()
boolean
static MutableAttributeImpl
static MutableAttributeImpl
of
(CharSequence attrName) static MutableAttributeImpl
of
(CharSequence attrName, CharSequence value) static MutableAttributeImpl
of
(CharSequence attrName, CharSequence value, char valueListDelimiter) static MutableAttributeImpl
of
(CharSequence attrName, CharSequence value, char valueListDelimiter, char valueNameDelimiter) removeValue
(CharSequence value) Add a new value or values depending on list and name delimiter settings and value content.replaceValue
(CharSequence value) Replace the complete value of this attribute by a new valuevoid
setValue
(CharSequence value) Add a new value or values depending on list and name delimiter settings and value contenttoString()
protected String
Return the attribute value string by splicing the values of the map using valueListDelimiter and valueNameDelimiter with replacements of the given name/value if provided.
-
Field Details
-
name
-
valueListDelimiter
private final char valueListDelimiter -
valueNameDelimiter
private final char valueNameDelimiter -
value
-
values
-
-
Constructor Details
-
MutableAttributeImpl
private MutableAttributeImpl(CharSequence name, CharSequence value, char valueListDelimiter, char valueNameDelimiter)
-
-
Method Details
-
getValueListDelimiter
public char getValueListDelimiter()- Specified by:
getValueListDelimiter
in interfaceAttribute
-
getValueNameDelimiter
public char getValueNameDelimiter()- Specified by:
getValueNameDelimiter
in interfaceAttribute
-
toImmutable
- Specified by:
toImmutable
in interfaceMutable<MutableAttribute,
Attribute>
-
toMutable
- Specified by:
toMutable
in interfaceImmutable<Attribute,
MutableAttribute>
-
copy
- Specified by:
copy
in interfaceMutableAttribute
-
getName
-
getValue
-
resetToValuesMap
public void resetToValuesMap() -
getValueMap
-
valueFromMap
Return the attribute value string by splicing the values of the map using valueListDelimiter and valueNameDelimiter with replacements of the given name/value if provided. If the name is not empty and value is empty then this will be removed from the final string- Returns:
- string for value of this attribute from map
-
isNonRendering
public boolean isNonRendering()- Specified by:
isNonRendering
in interfaceAttribute
-
replaceValue
Description copied from interface:Attribute
Replace the complete value of this attribute by a new value- Specified by:
replaceValue
in interfaceAttribute
- Specified by:
replaceValue
in interfaceMutableAttribute
- Parameters:
value
- new value- Returns:
- new attribute or same attribute if nothing changed or attribute is mutable
-
setValue
Description copied from interface:Attribute
Add a new value or values depending on list and name delimiter settings and value contentIf the attribute does not have a list delimiter then its value will be set to the given value.
If the attribute has a list delimiter but not name delimiter then value will be split by list delimiter and all values will be added to the attribute's value list. New ones added at the end, old ones left as is.
If the attribute has a list delimiter and a name delimiter then value will be split by list delimiter and the name portion of each value will be used to find duplicates whose value will be replaced. New ones added at the end, old ones left where they are but with a new value.
- Specified by:
setValue
in interfaceAttribute
- Specified by:
setValue
in interfaceMutableAttribute
- Parameters:
value
- value or list of values (if attribute has a list delimiter and name delimiter) to change- Returns:
- new attribute or same attribute if nothing changed or attribute is mutable
-
forEachValue
-
removeValue
Description copied from interface:Attribute
Add a new value or values depending on list and name delimiter settings and value content.If the attribute does not have a list delimiter and its value is equal to the given value then its value is set to empty
If the attribute has a list delimiter but not name delimiter then value will be split by list delimiter and any values in attribute's value list will be removed
If the attribute has a list delimiter and a name delimiter then value will be split by list delimiter and only the name portion of each value will be used for removal from the attribute's value list
- Specified by:
removeValue
in interfaceAttribute
- Specified by:
removeValue
in interfaceMutableAttribute
- Parameters:
value
- value or list of values (if attribute has a list delimiter and name delimiter) to remove- Returns:
- new attribute or same attribute if nothing changed or attribute is mutable
-
containsValue
Description copied from interface:Attribute
See if the attribute contains the value (if attribute has list delimiter set) or is equal to the value if no list delimiter is set- Specified by:
containsValue
in interfaceAttribute
- Specified by:
containsValue
in interfaceMutableAttribute
- Parameters:
value
- name part of the attribute value list or the value if the attribute does not have a value list delimiter- Returns:
- true if the attribute contains the valueName
-
equals
-
hashCode
public int hashCode() -
toString
-
of
-
of
-
of
-
of
public static MutableAttributeImpl of(CharSequence attrName, CharSequence value, char valueListDelimiter) -
of
public static MutableAttributeImpl of(CharSequence attrName, CharSequence value, char valueListDelimiter, char valueNameDelimiter)
-