Record Class ARI1CodeGeneratorParameters
java.lang.Object
java.lang.Record
com.io7m.aradine.instrument.codegen.ARI1CodeGeneratorParameters
- Record Components:
symbolicName
- The symbolic name of the bundle holding the instrumentversion
- The version of the bundle holding the instrumentpackageName
- The output package namesourceFile
- The input source fileoutputSourceDirectory
- The output source directoryoutputResourceDirectory
- The output resource directoryparsers
- The instrument parsersserializers
- The instrument serializers
public record ARI1CodeGeneratorParameters(String symbolicName, ARI1Version version, String packageName, Path sourceFile, Path outputSourceDirectory, Path outputResourceDirectory, ARI1InstrumentParserFactoryType parsers, ARI1InstrumentSerializerFactoryType serializers)
extends Record
Parameters for code generation.
-
Constructor Summary
ConstructorsConstructorDescriptionARI1CodeGeneratorParameters
(String symbolicName, ARI1Version version, String packageName, Path sourceFile, Path outputSourceDirectory, Path outputResourceDirectory, ARI1InstrumentParserFactoryType parsers, ARI1InstrumentSerializerFactoryType serializers) Parameters for code generation. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theoutputResourceDirectory
record component.Returns the value of theoutputSourceDirectory
record component.Returns the value of thepackageName
record component.parsers()
Returns the value of theparsers
record component.Returns the value of theserializers
record component.Returns the value of thesourceFile
record component.Returns the value of thesymbolicName
record component.final String
toString()
Returns a string representation of this record class.version()
Returns the value of theversion
record component.
-
Constructor Details
-
ARI1CodeGeneratorParameters
public ARI1CodeGeneratorParameters(String symbolicName, ARI1Version version, String packageName, Path sourceFile, Path outputSourceDirectory, Path outputResourceDirectory, ARI1InstrumentParserFactoryType parsers, ARI1InstrumentSerializerFactoryType serializers) Parameters for code generation.- Parameters:
symbolicName
- The symbolic name of the bundle holding the instrumentversion
- The version of the bundle holding the instrumentpackageName
- The output package namesourceFile
- The input source fileoutputSourceDirectory
- The output source directoryoutputResourceDirectory
- The output resource directoryparsers
- The instrument parsersserializers
- The instrument serializers
-
-
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)
. -
symbolicName
Returns the value of thesymbolicName
record component.- Returns:
- the value of the
symbolicName
record component
-
version
Returns the value of theversion
record component.- Returns:
- the value of the
version
record component
-
packageName
Returns the value of thepackageName
record component.- Returns:
- the value of the
packageName
record component
-
sourceFile
Returns the value of thesourceFile
record component.- Returns:
- the value of the
sourceFile
record component
-
outputSourceDirectory
Returns the value of theoutputSourceDirectory
record component.- Returns:
- the value of the
outputSourceDirectory
record component
-
outputResourceDirectory
Returns the value of theoutputResourceDirectory
record component.- Returns:
- the value of the
outputResourceDirectory
record component
-
parsers
Returns the value of theparsers
record component.- Returns:
- the value of the
parsers
record component
-
serializers
Returns the value of theserializers
record component.- Returns:
- the value of the
serializers
record component
-