- java.lang.Object
-
- javafx.css.Selector
-
- javafx.css.SimpleSelector
-
public final class SimpleSelector extends Selector
A simple selector which behaves according to the CSS standard.- Since:
- 9
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Gets the value of the selector id.StringgetName()Gets the name of the java class to which this selector is applied, or *.NodeOrientationgetNodeOrientation()Gets theNodeOrientationof thisSelector.List<String>getStyleClasses()Gets an immutable list of style-classes of theSelector.Set<StyleClass>getStyleClassSet()Gets theSetofStyleClasses of theSelector.StringtoString()Converts this object to a string.-
Methods declared in class javafx.css.Selector
applies, applies, createMatch, createSelector, getOrdinal, getRule, setOrdinal, stateMatches, writeBinary
-
-
-
-
Method Detail
-
getName
public String getName()
Gets the name of the java class to which this selector is applied, or *.- Returns:
- the name of the java class
-
getStyleClasses
public List<String> getStyleClasses()
Gets an immutable list of style-classes of theSelector.- Returns:
- an immutable list of style-classes of the
Selector
-
getStyleClassSet
public Set<StyleClass> getStyleClassSet()
Gets theSetofStyleClasses of theSelector.- Returns:
- the
SetofStyleClasses
-
getId
public String getId()
Gets the value of the selector id.- Returns:
- the value of the selector id, which may be an empty string
-
getNodeOrientation
public NodeOrientation getNodeOrientation()
Gets theNodeOrientationof thisSelector.- Returns:
- the
NodeOrientation
-
-