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