Package org.pjdbc.capabilities
Record Class DriverCapability.Parameter
java.lang.Object
java.lang.Record
org.pjdbc.capabilities.DriverCapability.Parameter
- Enclosing class:
DriverCapability
public static record DriverCapability.Parameter(String name, String type, String description, Object defaultValue, boolean required, Number min, Number max, List<String> enumValues)
extends Record
Represents a configurable driver parameter.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedefaultValuerecord component.Returns the value of thedescriptionrecord component.Returns the value of theenumValuesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.max()Returns the value of themaxrecord component.min()Returns the value of theminrecord component.name()Returns the value of thenamerecord component.booleanrequired()Returns the value of therequiredrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
Parameter
public Parameter(String name, String type, String description, Object defaultValue, boolean required, Number min, Number max, List<String> enumValues) Creates an instance of aParameterrecord class.- Parameters:
name- the value for thenamerecord componenttype- the value for thetyperecord componentdescription- the value for thedescriptionrecord componentdefaultValue- the value for thedefaultValuerecord componentrequired- the value for therequiredrecord componentmin- the value for theminrecord componentmax- the value for themaxrecord componentenumValues- the value for theenumValuesrecord component
-
-
Method Details
-
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
public final int 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
defaultValue
Returns the value of thedefaultValuerecord component.- Returns:
- the value of the
defaultValuerecord component
-
required
public boolean required()Returns the value of therequiredrecord component.- Returns:
- the value of the
requiredrecord component
-
min
Returns the value of theminrecord component.- Returns:
- the value of the
minrecord component
-
max
Returns the value of themaxrecord component.- Returns:
- the value of the
maxrecord component
-
enumValues
Returns the value of theenumValuesrecord component.- Returns:
- the value of the
enumValuesrecord component
-