Record Class RequestedField
java.lang.Object
java.lang.Record
org.graylog.plugins.views.search.rest.scriptingapi.request.RequestedField
-
Constructor Summary
ConstructorsConstructorDescriptionRequestedField(String name, String decorator) Creates an instance of aRequestedFieldrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedecoratorrecord component.final booleanIndicates whether some other object is "equal to" this one.booleanbooleanhasDecorator(String decoratorName) final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.static RequestedFieldtoString()Returns a string representation of this record class.
-
Constructor Details
-
RequestedField
Creates an instance of aRequestedFieldrecord class.- Parameters:
name- the value for thenamerecord componentdecorator- the value for thedecoratorrecord component
-
-
Method Details
-
parse
-
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. -
hasDecorator
-
hasDecorator
public boolean hasDecorator() -
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. All components in this record class are compared withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
decorator
Returns the value of thedecoratorrecord component.- Returns:
- the value of the
decoratorrecord component
-