graphql.language.ScalarTypeDefinition Maven / Gradle / Ivy
package graphql.language;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import static graphql.language.NodeUtil.directivesByName;
public class ScalarTypeDefinition extends AbstractNode implements TypeDefinition {
private String name;
private List directives = new ArrayList<>();
public ScalarTypeDefinition(String name) {
this.name = name;
}
public List getDirectives() {
return directives;
}
public Map getDirectivesByName() {
return directivesByName(directives);
}
public Directive getDirective(String directiveName) {
return getDirectivesByName().get(directiveName);
}
@Override
public String getName() {
return name;
}
@Override
public List getChildren() {
List result = new ArrayList<>();
result.addAll(directives);
return result;
}
@Override
public boolean isEqualTo(Node o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ScalarTypeDefinition that = (ScalarTypeDefinition) o;
if ( null == name ) {
if ( null != that.name ) return false;
} else if ( !name.equals(that.name) ) {
return false;
}
return true;
}
@Override
public String toString() {
return "ScalarTypeDefinition{" +
"name='" + name + '\'' +
", directives=" + directives +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy