Package org.patternfly.component
Enum ComponentType
- java.lang.Object
-
- java.lang.Enum<ComponentType>
-
- org.patternfly.component.ComponentType
-
- All Implemented Interfaces:
Serializable,Comparable<ComponentType>
public enum ComponentType extends Enum<ComponentType>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description StringcomponentNameStringid
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ComponentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ComponentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Accordion
public static final ComponentType Accordion
-
ActionList
public static final ComponentType ActionList
-
Alert
public static final ComponentType Alert
-
AlertGroup
public static final ComponentType AlertGroup
-
Avatar
public static final ComponentType Avatar
-
Badge
public static final ComponentType Badge
-
Brand
public static final ComponentType Brand
-
Breadcrumb
public static final ComponentType Breadcrumb
-
Button
public static final ComponentType Button
-
Card
public static final ComponentType Card
-
CardView
public static final ComponentType CardView
-
Checkbox
public static final ComponentType Checkbox
-
Chip
public static final ComponentType Chip
-
ChipGroup
public static final ComponentType ChipGroup
-
CodeBlock
public static final ComponentType CodeBlock
-
ContextSelector
public static final ComponentType ContextSelector
-
DataList
public static final ComponentType DataList
-
DataTable
public static final ComponentType DataTable
-
Divider
public static final ComponentType Divider
-
Drawer
public static final ComponentType Drawer
-
Dropdown
public static final ComponentType Dropdown
-
EmptyState
public static final ComponentType EmptyState
-
ExpandableSection
public static final ComponentType ExpandableSection
-
Form
public static final ComponentType Form
-
Icon
public static final ComponentType Icon
-
InputGroup
public static final ComponentType InputGroup
-
Label
public static final ComponentType Label
-
LabelGroup
public static final ComponentType LabelGroup
-
List
public static final ComponentType List
-
Masthead
public static final ComponentType Masthead
-
Menu
public static final ComponentType Menu
-
Navigation
public static final ComponentType Navigation
-
NavigationItem
public static final ComponentType NavigationItem
-
NotificationBadge
public static final ComponentType NotificationBadge
-
OptionsMenu
public static final ComponentType OptionsMenu
-
Page
public static final ComponentType Page
-
Pagination
public static final ComponentType Pagination
-
Select
public static final ComponentType Select
-
Sidebar
public static final ComponentType Sidebar
-
Skeleton
public static final ComponentType Skeleton
-
SkipToContent
public static final ComponentType SkipToContent
-
Slider
public static final ComponentType Slider
-
Spinner
public static final ComponentType Spinner
-
Switch
public static final ComponentType Switch
-
Tabs
public static final ComponentType Tabs
-
TextContent
public static final ComponentType TextContent
-
TextInput
public static final ComponentType TextInput
-
TextInputGroup
public static final ComponentType TextInputGroup
-
Title
public static final ComponentType Title
-
ToggleGroup
public static final ComponentType ToggleGroup
-
Toolbar
public static final ComponentType Toolbar
-
TreeView
public static final ComponentType TreeView
-
Wizard
public static final ComponentType Wizard
-
Unknown
public static final ComponentType Unknown
-
-
Method Detail
-
values
public static ComponentType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ComponentType c : ComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComponentType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-