Class DataFetchersDelegateReservedJavaKeywordAsObjectFieldImpl

java.lang.Object
org.allGraphQLCases.server.impl.DataFetchersDelegateReservedJavaKeywordAsObjectFieldImpl
All Implemented Interfaces:
DataFetchersDelegateReservedJavaKeywordAsObjectField

@Component public class DataFetchersDelegateReservedJavaKeywordAsObjectFieldImpl extends Object implements DataFetchersDelegateReservedJavaKeywordAsObjectField
Author:
etienne-sf
  • Constructor Details

    • DataFetchersDelegateReservedJavaKeywordAsObjectFieldImpl

      public DataFetchersDelegateReservedJavaKeywordAsObjectFieldImpl()
  • Method Details

    • _if

      public CompletableFuture<STP_Human_STS> _if(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin, String _new, String _package, String _private)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.if.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _if in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the if attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _if

      public STP_Human_STS _if(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin, String _new, String _package, String _private)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.if.
      Specified by:
      _if in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the if attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _implements

      public CompletableFuture<STP_Human_STS> _implements(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.implements.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _implements in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the implements attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _implements

      public STP_Human_STS _implements(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.implements.
      Specified by:
      _implements in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the implements attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _import

      public CompletableFuture<STP_Human_STS> _import(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.import.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _import in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the import attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _import

      public STP_Human_STS _import(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.import.
      Specified by:
      _import in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the import attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _instanceof

      public CompletableFuture<STP_Human_STS> _instanceof(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.instanceof.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _instanceof in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the instanceof attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _instanceof

      public STP_Human_STS _instanceof(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.instanceof.
      Specified by:
      _instanceof in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the instanceof attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _int

      public CompletableFuture<STP_Human_STS> _int(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.int.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _int in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the int attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _int

      public STP_Human_STS _int(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.int.
      Specified by:
      _int in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the int attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _interface

      public CompletableFuture<STP_Human_STS> _interface(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.interface.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _interface in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the interface attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _interface

      public STP_Human_STS _interface(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.interface.
      Specified by:
      _interface in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the interface attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _long

      public CompletableFuture<STP_Human_STS> _long(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.long.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _long in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the long attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _long

      public STP_Human_STS _long(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.long.
      Specified by:
      _long in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the long attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _native

      public CompletableFuture<STP_Human_STS> _native(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.native.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _native in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the native attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _native

      public STP_Human_STS _native(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.native.
      Specified by:
      _native in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the native attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _new

      public CompletableFuture<STP_Human_STS> _new(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.new.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _new in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the new attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _new

      public STP_Human_STS _new(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.new.
      Specified by:
      _new in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the new attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _package

      public CompletableFuture<STP_Human_STS> _package(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.package.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _package in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the package attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _package

      public STP_Human_STS _package(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.package.
      Specified by:
      _package in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the package attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _private

      public CompletableFuture<STP_Human_STS> _private(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.private.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _private in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the private attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _private

      public STP_Human_STS _private(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.private.
      Specified by:
      _private in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the private attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _protected

      public CompletableFuture<STP_Human_STS> _protected(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.protected.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _protected in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the protected attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _protected

      public STP_Human_STS _protected(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.protected.
      Specified by:
      _protected in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the protected attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _public

      public CompletableFuture<STP_Human_STS> _public(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.public.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _public in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the public attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _public

      public STP_Human_STS _public(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.public.
      Specified by:
      _public in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the public attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _return

      public CompletableFuture<STP_Human_STS> _return(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.return.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _return in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the return attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _return

      public STP_Human_STS _return(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.return.
      Specified by:
      _return in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the return attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _short

      public CompletableFuture<STP_Human_STS> _short(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.short.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _short in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the short attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _short

      public STP_Human_STS _short(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.short.
      Specified by:
      _short in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the short attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _static

      public CompletableFuture<STP_Human_STS> _static(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.static.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _static in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the static attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _static

      public STP_Human_STS _static(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.static.
      Specified by:
      _static in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the static attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _strictfp

      public CompletableFuture<STP_Human_STS> _strictfp(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.strictfp.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _strictfp in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the strictfp attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _strictfp

      public STP_Human_STS _strictfp(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.strictfp.
      Specified by:
      _strictfp in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the strictfp attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _super

      public CompletableFuture<STP_Human_STS> _super(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.super.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _super in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the super attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _super

      public STP_Human_STS _super(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.super.
      Specified by:
      _super in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the super attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _switch

      public CompletableFuture<STP_Human_STS> _switch(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.switch.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _switch in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the switch attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _switch

      public STP_Human_STS _switch(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.switch.
      Specified by:
      _switch in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the switch attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _synchronized

      public CompletableFuture<STP_Human_STS> _synchronized(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.synchronized.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _synchronized in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the synchronized attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _synchronized

      public STP_Human_STS _synchronized(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.synchronized.
      Specified by:
      _synchronized in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the synchronized attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _this

      public CompletableFuture<STP_Human_STS> _this(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.this.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _this in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the this attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _this

      public STP_Human_STS _this(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.this.
      Specified by:
      _this in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the this attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _throw

      public CompletableFuture<STP_Human_STS> _throw(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.throw.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _throw in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the throw attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _throw

      public STP_Human_STS _throw(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.throw.
      Specified by:
      _throw in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the throw attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _throws

      public CompletableFuture<STP_Human_STS> _throws(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.throws.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _throws in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the throws attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _throws

      public STP_Human_STS _throws(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.throws.
      Specified by:
      _throws in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the throws attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _transient

      public CompletableFuture<STP_Human_STS> _transient(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.transient.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _transient in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the transient attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _transient

      public STP_Human_STS _transient(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.transient.
      Specified by:
      _transient in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the transient attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _try

      public CompletableFuture<STP_Human_STS> _try(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.try.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _try in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the try attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _try

      public STP_Human_STS _try(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.try.
      Specified by:
      _try in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the try attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _void

      public CompletableFuture<STP_Human_STS> _void(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.void.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _void in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the void attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _void

      public STP_Human_STS _void(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.void.
      Specified by:
      _void in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the void attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _volatile

      public CompletableFuture<STP_Human_STS> _volatile(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.volatile.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _volatile in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the volatile attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _volatile

      public STP_Human_STS _volatile(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.volatile.
      Specified by:
      _volatile in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the volatile attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _while

      public CompletableFuture<STP_Human_STS> _while(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, org.dataloader.DataLoader<UUID,STP_Human_STS> dataLoader, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.while.
      For optimization, this method returns a CompletableFuture. This allows to use graphql-java java-dataloader to highly optimize the number of requests to the server.
      The principle is this one: The data loader collects all the data to load, avoid to load several times the same data, and allows parallel execution of the queries, if multiple queries are to be run.
      You can implements this method like this:
      Specified by:
      _while in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      dataLoader - The DataLoader allows to load several data in one query. It allows to solve the (n+1) queries issues, and greatly optimizes the response time.
      You'll find more informations here: https://github.com/graphql-java/java-dataloader
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the while attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.
    • _while

      public STP_Human_STS _while(graphql.schema.DataFetchingEnvironment dataFetchingEnvironment, STP_ReservedJavaKeywordAsObjectField_STS origin)
      Description copied from interface: DataFetchersDelegateReservedJavaKeywordAsObjectField
      This method loads the data for ReservedJavaKeywordAsObjectField.while.
      Specified by:
      _while in interface DataFetchersDelegateReservedJavaKeywordAsObjectField
      Parameters:
      dataFetchingEnvironment - The GraphQL DataFetchingEnvironment. It gives you access to the full GraphQL context for this DataFetcher
      origin - The object from which the field is fetch. In other word: the aim of this data fetcher is to fetch the while attribute of the origin, which is an instance of {ObjectType {name:ReservedJavaKeywordAsObjectField, fields:{Field{name:if, type:Human, params:[new:String,package:String,private:String]},Field{name:implements, type:Human, params:[]},Field{name:import, type:Human, params:[]},Field{name:instanceof, type:Human, params:[]},Field{name:int, type:Human, params:[]},Field{name:interface, type:Human, params:[]},Field{name:long, type:Human, params:[]},Field{name:native, type:Human, params:[]},Field{name:new, type:Human, params:[]},Field{name:package, type:Human, params:[]},Field{name:private, type:Human, params:[]},Field{name:protected, type:Human, params:[]},Field{name:public, type:Human, params:[]},Field{name:return, type:Human, params:[]},Field{name:short, type:Human, params:[]},Field{name:static, type:Human, params:[]},Field{name:strictfp, type:Human, params:[]},Field{name:super, type:Human, params:[]},Field{name:switch, type:Human, params:[]},Field{name:synchronized, type:Human, params:[]},Field{name:this, type:Human, params:[]},Field{name:throw, type:Human, params:[]},Field{name:throws, type:Human, params:[]},Field{name:transient, type:Human, params:[]},Field{name:try, type:Human, params:[]},Field{name:void, type:Human, params:[]},Field{name:volatile, type:Human, params:[]},Field{name:while, type:Human, params:[]}}, comments ""}. It depends on your data modle, but it typically contains the id to use in the query.