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
-
BackToTop
public static final ComponentType BackToTop
-
Badge
public static final ComponentType Badge
-
Banner
public static final ComponentType Banner
-
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
-
CodeEditor
public static final ComponentType CodeEditor
-
ContextSelector
public static final ComponentType ContextSelector
-
DataList
public static final ComponentType DataList
-
DataTable
public static final ComponentType DataTable
-
DescriptionList
public static final ComponentType DescriptionList
-
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
-
FormSelect
public static final ComponentType FormSelect
-
HelperText
public static final ComponentType HelperText
-
Hint
public static final ComponentType Hint
-
Icon
public static final ComponentType Icon
-
InputGroup
public static final ComponentType InputGroup
-
JumpLinks
public static final ComponentType JumpLinks
-
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
-
MenuToggle
public static final ComponentType MenuToggle
-
Navigation
public static final ComponentType Navigation
-
NotificationBadge
public static final ComponentType NotificationBadge
-
OptionsMenu
public static final ComponentType OptionsMenu
-
Page
public static final ComponentType Page
-
Pagination
public static final ComponentType Pagination
-
Panel
public static final ComponentType Panel
-
Popover
public static final ComponentType Popover
-
Progress
public static final ComponentType Progress
-
Radio
public static final ComponentType Radio
-
Select
public static final ComponentType Select
-
Sidebar
public static final ComponentType Sidebar
-
SimpleList
public static final ComponentType SimpleList
-
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
-
Tooltip
public static final ComponentType Tooltip
-
TreeView
public static final ComponentType TreeView
-
Truncate
public static final ComponentType Truncate
-
Wizard
public static final ComponentType Wizard
-
-
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
-
-