Top Fields Constructors Methods
jdk.jfr.internal.dcmd

pack-priv final Record Argument

extends Record
Class Inheritance
Record Components
name:String
description:String
type:String
mandatory:boolean 
option:boolean 
defaultValue:String
allowMultiple:boolean 

Field Summary

Modifier and TypeField and Description
private final boolean
allowMultiple

Record Component accessed by allowMultiple().

private final String
defaultValue

Record Component accessed by defaultValue().

private final String
description

Record Component accessed by description().

private final boolean
mandatory

Record Component accessed by mandatory().

private final String
name

Record Component accessed by name().

private final boolean
option

Record Component accessed by option().

private final String
type

Record Component accessed by type().

Constructor Summary

AccessConstructor and Description
pack-priv
Argument(String name, String description, String type, boolean mandatory, boolean option, String defaultValue, boolean allowMultiple)

Method Summary

Modifier and TypeMethod and Description
public boolean
allowMultiple()

Record Component getter of allowMultiple.

public String
defaultValue()

Record Component getter of defaultValue.

public String
description()

Record Component getter of description.

public final boolean
equals(Object
the reference object with which to compare.
o
)

Implements abstract java.lang.Record.equals.

Indicates whether some other object is "equal to" this one.
public final int
hashCode()

Implements abstract java.lang.Record.hashCode.

Returns a hash code value for the record.
public boolean
mandatory()

Record Component getter of mandatory.

public String
name()

Record Component getter of name.

public boolean
option()

Record Component getter of option.

public final String
toString()

Implements abstract java.lang.Record.toString.

Returns a string representation of the record.
public String
type()

Record Component getter of type.

Field Detail

allowMultipleback to summary
private final boolean allowMultiple

Record Component accessed by allowMultiple().

defaultValueback to summary
private final String defaultValue

Record Component accessed by defaultValue().

descriptionback to summary
private final String description

Record Component accessed by description().

mandatoryback to summary
private final boolean mandatory

Record Component accessed by mandatory().

nameback to summary
private final String name

Record Component accessed by name().

optionback to summary
private final boolean option

Record Component accessed by option().

typeback to summary
private final String type

Record Component accessed by type().

Constructor Detail

Argumentback to summary
pack-priv Argument(String name, String description, String type, boolean mandatory, boolean option, String defaultValue, boolean allowMultiple)

Method Detail

allowMultipleback to summary
public boolean allowMultiple()

Record Component getter of allowMultiple.

defaultValueback to summary
public String defaultValue()

Record Component getter of defaultValue.

descriptionback to summary
public String description()

Record Component getter of description.

equalsback to summary
public final boolean equals(Object o)

Implements abstract java.lang.Record.equals.

Doc from java.lang.Record.equals.

Indicates whether some other object is "equal to" this one. In addition to the general contract of Object.equals, record classes must further obey the invariant that when a record instance is "copied" by passing the result of the record component accessor methods to the canonical constructor, as follows:

    R copy = new R(r.c1(), r.c2(), ..., r.cn());
then it must be the case that r.equals(copy).
Parameters
o:Object

the reference object with which to compare.

Returns:boolean

true if this record is equal to the argument; false otherwise.

hashCodeback to summary
public final int hashCode()

Implements abstract java.lang.Record.hashCode.

Doc from java.lang.Record.hashCode.

Returns a hash code value for the record. Obeys the general contract of Object.hashCode. For records, hashing behavior is constrained by the refined contract of Record.equals, so that any two records created from the same components must have the same hash code.

Returns:int

a hash code value for this record.

mandatoryback to summary
public boolean mandatory()

Record Component getter of mandatory.

nameback to summary
public String name()

Record Component getter of name.

optionback to summary
public boolean option()

Record Component getter of option.

toStringback to summary
public final String toString()

Implements abstract java.lang.Record.toString.

Doc from java.lang.Record.toString.

Returns a string representation of the record. In accordance with the general contract of Object#toString(), the toString method returns a string that "textually represents" this record. The result should be a concise but informative representation that is easy for a person to read.

In addition to this general contract, record classes must further participate in the invariant that any two records which are equal must produce equal strings. This invariant is necessarily relaxed in the rare case where corresponding equal component values might fail to produce equal strings for themselves.

Returns:String

a string representation of the object.

typeback to summary
public String type()

Record Component getter of type.