- java.lang.Object
-
- javafx.css.Match
-
- All Implemented Interfaces:
Comparable<Match>
public final class Match extends Object implements Comparable<Match>
Used byRule
to determine whether or not the selector applies to a given object. Returned bySelector
matches in the event of a match.- Since:
- 9
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Match o)
Compares this object with the givenMatch
object.com.sun.javafx.css.PseudoClassState
getPseudoClasses()
Gets the pseudo class state.Selector
getSelector()
Gets theSelector
.int
getSpecificity()
Gets the specificity.
-
-
-
Method Detail
-
getSelector
public Selector getSelector()
Gets theSelector
.- Returns:
- the
Selector
-
getPseudoClasses
public com.sun.javafx.css.PseudoClassState getPseudoClasses()
Gets the pseudo class state.- Returns:
- the pseudo class state
-
getSpecificity
public int getSpecificity()
Gets the specificity.- Returns:
- the specificity
-
compareTo
public int compareTo(Match o)
Compares this object with the givenMatch
object.Comparison is based on the specificity of the objects. Specificity is calculated based on the id count, the style class count and the pseudoclass count.
- Specified by:
compareTo
in interfaceComparable<Match>
- Parameters:
o
- theMatch
object to be compared- Returns:
- the difference between the specificity of this object and
the specificity of the given
Match
object
-
-