Record Class GraphQlSchemaGenerator.ExclusionType
java.lang.Object
java.lang.Record
org.aksw.jenax.graphql.schema.generator.GraphQlSchemaGenerator.ExclusionType
- Enclosing class:
- GraphQlSchemaGenerator
-
Constructor Summary
ConstructorsConstructorDescriptionExclusionType(org.apache.jena.graph.Node baseClass, Set<org.apache.jena.graph.Node> excludedProperties) Creates an instance of aExclusionTyperecord class. -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.jena.graph.NodeReturns the value of thebaseClassrecord component.final booleanIndicates whether some other object is "equal to" this one.Set<org.apache.jena.graph.Node>Returns the value of theexcludedPropertiesrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ExclusionType
public ExclusionType(org.apache.jena.graph.Node baseClass, Set<org.apache.jena.graph.Node> excludedProperties) Creates an instance of aExclusionTyperecord class.- Parameters:
baseClass- the value for thebaseClassrecord componentexcludedProperties- the value for theexcludedPropertiesrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
baseClass
public org.apache.jena.graph.Node baseClass()Returns the value of thebaseClassrecord component.- Returns:
- the value of the
baseClassrecord component
-
excludedProperties
Returns the value of theexcludedPropertiesrecord component.- Returns:
- the value of the
excludedPropertiesrecord component
-