Record Class CSConfigurationParameters
java.lang.Object
java.lang.Record
com.io7m.certusine.api.CSConfigurationParameters
- Record Components:
baseDirectory- The base directorylexical- The lexical information for the configuration parametersparameters- The parameter map
- All Implemented Interfaces:
com.io7m.jlexing.core.LexicalType<URI>
public record CSConfigurationParameters(Path baseDirectory, com.io7m.jlexing.core.LexicalPosition<URI> lexical, Map<String,String> parameters)
extends Record
implements com.io7m.jlexing.core.LexicalType<URI>
A set of configuration parameters.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebaseDirectoryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.com.io7m.jlexing.core.LexicalPosition<URI> lexical()Returns the value of thelexicalrecord component.Returns the value of theparametersrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CSConfigurationParameters
public CSConfigurationParameters(Path baseDirectory, com.io7m.jlexing.core.LexicalPosition<URI> lexical, Map<String, String> parameters) A set of configuration parameters.- Parameters:
baseDirectory- The base directorylexical- The lexical information for the configuration parametersparameters- The parameter map
-
-
Method Details
-
toString
-
hashCode
-
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). -
baseDirectory
Returns the value of thebaseDirectoryrecord component.- Returns:
- the value of the
baseDirectoryrecord component
-
lexical
-
parameters
Returns the value of theparametersrecord component.- Returns:
- the value of the
parametersrecord component
-