Class AllFieldCasesInput

java.lang.Object
org.allGraphQLCases.client2.AllFieldCasesInput

public class AllFieldCasesInput extends Object
Author:
generated by graphql-java-generator
See Also:
  • Constructor Details

    • AllFieldCasesInput

      public AllFieldCasesInput()
  • Method Details

    • setId

      public void setId(String id)
    • getId

      public String getId()
    • setName

      public void setName(String name)
    • getName

      public String getName()
    • setForname

      public void setForname(String forname)
    • getForname

      public String getForname()
    • setBreak

      public void setBreak(String _break)
    • getBreak

      public String getBreak()
    • setAge

      public void setAge(Long age)
    • getAge

      public Long getAge()
    • setDate

      public void setDate(Date date)
    • getDate

      public Date getDate()
    • setDateTime

      public void setDateTime(OffsetDateTime dateTime)
    • getDateTime

      public OffsetDateTime getDateTime()
    • setDates

      public void setDates(List<Date> dates)
    • getDates

      public List<Date> getDates()
    • setNbComments

      public void setNbComments(Integer nbComments)
    • getNbComments

      public Integer getNbComments()
    • setComments

      public void setComments(List<String> comments)
    • getComments

      public List<String> getComments()
    • setBooleans

      public void setBooleans(List<Boolean> booleans)
    • getBooleans

      public List<Boolean> getBooleans()
    • setAliases

      public void setAliases(List<String> aliases)
    • getAliases

      public List<String> getAliases()
    • setPlanets

      public void setPlanets(List<String> planets)
    • getPlanets

      public List<String> getPlanets()
    • setMatrix

      public void setMatrix(List<List<Double>> matrix)
    • getMatrix

      public List<List<Double>> getMatrix()
    • setWithIdSubtype

      public void setWithIdSubtype(List<AllFieldCasesWithIdSubtypeInput> withIdSubtype)
    • getWithIdSubtype

      public List<AllFieldCasesWithIdSubtypeInput> getWithIdSubtype()
    • setWithoutIdSubtype

      public void setWithoutIdSubtype(List<AllFieldCasesWithoutIdSubtypeInput> withoutIdSubtype)
    • getWithoutIdSubtype

      public List<AllFieldCasesWithoutIdSubtypeInput> getWithoutIdSubtype()
    • setNull

      public void setNull(String _null)
      Issue #188: null is not identified as a java keyword
    • getNull

      public String getNull()
      Issue #188: null is not identified as a java keyword
    • setExtendedField

      public void setExtendedField(String extendedField)
    • getExtendedField

      public String getExtendedField()
    • setAliasValue

      public void setAliasValue(String aliasName, Object aliasDeserializedValue)
      This method is called during the json deserialization process, by the GraphQLObjectMapper, each time an alias value is read from the json.
      Parameters:
      aliasName -
      aliasDeserializedValue -
    • getAliasValue

      public Object getAliasValue(String alias)
      Retrieves the value for the given alias, as it has been received for this object in the GraphQL response.
      This method should not be used for Custom Scalars, as the parser doesn't know if this alias is a custom scalar, and which custom scalar to use at deserialization time. In most case, a value will then be provided by this method with a basis json deserialization, but this value won't be the proper custom scalar value.
      Parameters:
      alias -
      Returns:
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • builder

      public static AllFieldCasesInput.Builder builder()