Module com.github.sormuras.bach
Package com.github.sormuras.bach.command
Record Class JarCommand.MainClassOption
java.lang.Object
java.lang.Record
com.github.sormuras.bach.command.JarCommand.MainClassOption
- All Implemented Interfaces:
Option
,Option.Value<String>
- Enclosing class:
- JarCommand
public static record JarCommand.MainClassOption(Optional<String> value)
extends Record
implements Option.Value<String>
Entry point for standalone applications option.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.github.sormuras.bach.command.Option
Option.Flag, Option.Value<T>, Option.Values<T>
-
Constructor Summary
ConstructorsConstructorDescriptionMainClassOption
(Optional<String> value) Creates an instance of aMainClassOption
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic JarCommand.MainClassOption
empty()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.github.sormuras.bach.command.Option.Value
get, isPresent
-
Constructor Details
-
MainClassOption
Creates an instance of aMainClassOption
record class.- Parameters:
value
- the value for thevalue
record component
-
-
Method Details
-
empty
-
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
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)
. -
value
Returns the value of thevalue
record component.- Specified by:
value
in interfaceOption.Value<String>
- Returns:
- the value of the
value
record component
-