Package net.sourceforge.plantuml.style
Class StyleSignature
- java.lang.Object
-
- net.sourceforge.plantuml.style.StyleSignature
-
public class StyleSignature extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description StyleSignature(java.lang.String s)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StyleSignature
add(java.lang.String s)
StyleSignature
addClickable(Url url)
StyleSignature
addStar()
static StyleSignature
empty()
boolean
equals(java.lang.Object arg)
Style
getMergedStyle(StyleBuilder styleBuilder)
java.util.Set<java.lang.String>
getNames()
int
hashCode()
boolean
isStarred()
boolean
match(Stereotype stereotype)
boolean
matchAll(StyleSignature other)
StyleSignature
mergeWith(java.util.List<Style> others)
StyleSignature
mergeWith(StyleSignature other)
static StyleSignature
of(SName... names)
java.lang.String
toString()
StyleSignature
with(Stereotype stereotype)
StyleSignature
withStereotype(Stereotype stereotype)
-
-
-
Method Detail
-
empty
public static StyleSignature empty()
-
addClickable
public StyleSignature addClickable(Url url)
-
add
public StyleSignature add(java.lang.String s)
-
addStar
public StyleSignature addStar()
-
isStarred
public boolean isStarred()
-
equals
public boolean equals(java.lang.Object arg)
- 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
-
matchAll
public boolean matchAll(StyleSignature other)
-
getNames
public final java.util.Set<java.lang.String> getNames()
-
of
public static StyleSignature of(SName... names)
-
withStereotype
public StyleSignature withStereotype(Stereotype stereotype)
-
with
public StyleSignature with(Stereotype stereotype)
-
mergeWith
public StyleSignature mergeWith(java.util.List<Style> others)
-
mergeWith
public StyleSignature mergeWith(StyleSignature other)
-
getMergedStyle
public Style getMergedStyle(StyleBuilder styleBuilder)
-
match
public boolean match(Stereotype stereotype)
-
-