Record Class CompactObjectHeadersExamples.VmFlagState
java.lang.Object
java.lang.Record
net.jrodolfo.java_evolution.java25.compact_object_headers.CompactObjectHeadersExamples.VmFlagState
- Record Components:
name- the VM flag nameenabled- whether the flag is enabledsource- where the selected flag value came from
- Enclosing class:
CompactObjectHeadersExamples
-
Constructor Summary
ConstructorsConstructorDescriptionVmFlagState(String name, boolean enabled, String source) Creates an instance of aVmFlagStaterecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()Returns the value of theenabledrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.source()Returns the value of thesourcerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
VmFlagState
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
name
-
enabled
-
source
-