Package guru.interlis.convconf.interlis
Record Class InterlisModelCompiler.CompileResult
java.lang.Object
java.lang.Record
guru.interlis.convconf.interlis.InterlisModelCompiler.CompileResult
- Enclosing class:
InterlisModelCompiler
public static record InterlisModelCompiler.CompileResult(ch.interlis.ili2c.metamodel.TransferDescription transferDescription, KmSchema kmSchema)
extends Record
Compilation output tuple.
-
Constructor Summary
ConstructorsConstructorDescriptionCompileResult(ch.interlis.ili2c.metamodel.TransferDescription transferDescription, KmSchema kmSchema) Creates an instance of aCompileResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.kmSchema()Returns the value of thekmSchemarecord component.final StringtoString()Returns a string representation of this record class.ch.interlis.ili2c.metamodel.TransferDescriptionReturns the value of thetransferDescriptionrecord component.
-
Constructor Details
-
CompileResult
public CompileResult(ch.interlis.ili2c.metamodel.TransferDescription transferDescription, KmSchema kmSchema) Creates an instance of aCompileResultrecord class.- Parameters:
transferDescription- the value for thetransferDescriptionrecord componentkmSchema- the value for thekmSchemarecord 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). -
transferDescription
public ch.interlis.ili2c.metamodel.TransferDescription transferDescription()Returns the value of thetransferDescriptionrecord component.- Returns:
- the value of the
transferDescriptionrecord component
-
kmSchema
Returns the value of thekmSchemarecord component.- Returns:
- the value of the
kmSchemarecord component
-