hydra.langs.xml.schema.ENTITY Maven / Gradle / Ivy
package hydra.langs.xml.schema;
import java.io.Serializable;
public class ENTITY implements Serializable {
public static final hydra.core.Name NAME = new hydra.core.Name("hydra/langs/xml/schema.ENTITY");
public final String value;
public ENTITY (String value) {
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof ENTITY)) {
return false;
}
ENTITY o = (ENTITY) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy