Package io.micronaut.controlpanel.core
Record Class ControlPanel.Category
java.lang.Object
java.lang.Record
io.micronaut.controlpanel.core.ControlPanel.Category
- Record Components:
id
- category id, used in links.name
- category name, displayed in the menu.iconClass
- category icon class, displayed in the menu.order
- category order, used to sort the menu items.
- Enclosing interface:
- ControlPanel<B>
public static record ControlPanel.Category(String id, String name, String iconClass, Integer order)
extends Record
Control panels are grouped by category. Categories are used to render the menu items of the
control panel UI.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theiconClass
record component.id()
Returns the value of theid
record component.name()
Returns the value of thename
record component.order()
Returns the value of theorder
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
MAIN
-
-
Constructor Details
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
iconClass
Returns the value of theiconClass
record component.- Returns:
- the value of the
iconClass
record component
-
order
Returns the value of theorder
record component.- Returns:
- the value of the
order
record component
-