Class AbstractVariableType
- java.lang.Object
-
- io.smallrye.graphql.client.impl.core.AbstractVariableType
-
- All Implemented Interfaces:
Buildable,VariableType
- Direct Known Subclasses:
VariableTypeImpl
public abstract class AbstractVariableType extends Object implements VariableType
-
-
Constructor Summary
Constructors Constructor Description AbstractVariableType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VariableTypegetChild()StringgetName()booleanisNonNull()voidsetChild(VariableType child)voidsetName(String name)voidsetNonNull(boolean nonNull)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.smallrye.graphql.client.core.VariableType
isList
-
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceVariableType
-
setName
public void setName(String name)
- Specified by:
setNamein interfaceVariableType
-
isNonNull
public boolean isNonNull()
- Specified by:
isNonNullin interfaceVariableType
-
setNonNull
public void setNonNull(boolean nonNull)
- Specified by:
setNonNullin interfaceVariableType
-
getChild
public VariableType getChild()
- Specified by:
getChildin interfaceVariableType
-
setChild
public void setChild(VariableType child)
- Specified by:
setChildin interfaceVariableType
-
-