All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.beezle.ssass.scss.AttribOp Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package net.sf.beezle.ssass.scss;

public class AttribOp {
    public static final AttribOp EQ = new AttribOp("=");
    public static final AttribOp INCLUDES = new AttribOp("~=");
    public static final AttribOp DASHMATCH = new AttribOp("|=");
    private final String op;

    private AttribOp(String op) {
        this.op = op;
    }

    public String toString() {
        return op;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy