Module com.github.sormuras.bach
Package com.github.sormuras.bach.command
Record Class JavacCommand.ReleaseOption
java.lang.Object
java.lang.Record
com.github.sormuras.bach.command.JavacCommand.ReleaseOption
- All Implemented Interfaces:
Option
,Option.Value<Integer>
- Enclosing class:
- JavacCommand
public static record JavacCommand.ReleaseOption(Optional<Integer> value)
extends Record
implements Option.Value<Integer>
Java SE release feature version 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
ConstructorsConstructorDescriptionReleaseOption
(Optional<Integer> value) Creates an instance of aReleaseOption
record class. -
Method Summary
Modifier and TypeMethodDescriptionstatic JavacCommand.ReleaseOption
empty()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.static JavacCommand.ReleaseOption
of
(int feature) 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
-
ReleaseOption
Creates an instance of aReleaseOption
record class.- Parameters:
value
- the value for thevalue
record component
-
-
Method Details
-
empty
-
of
-
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<Integer>
- Returns:
- the value of the
value
record component
-