
jodd.csselly.Selector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-stream-css Show documentation
Show all versions of xml-stream-css Show documentation
Stream Xml using StAX and Css matcher
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
package jodd.csselly;
/**
* Inner selector of {@link CssSelector}.
*/
public abstract class Selector {
/**
* Selector types.
*/
public enum Type {
ATTRIBUTE, PSEUDO_CLASS, PSEUDO_FUNCTION
}
protected final Type type;
protected Selector(Type type) {
this.type = type;
}
/**
* Returns selector type.
*/
public Type getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy