Uses of Enum Class
org.patternfly.style.Breakpoint
Package
Description
-
Uses of Breakpoint in org.patternfly.component.page
Modifier and TypeMethodDescriptionPage.breakpoint
(Function<Integer, Breakpoint> breakpointFn) The page resize observer uses the breakpoints returned from this function when adding thepf-m-breakpoint-[default|sm|md|lg|xl|2xl]
class.Page.verticalBreakpoint
(Function<Integer, Breakpoint> verticalBreakpointFn) The page resize observer uses the breakpoints returned from this function when adding thepf-m-height-breakpoint-[default|sm|md|lg|xl|2xl]
class. -
Uses of Breakpoint in org.patternfly.layout.flex
Modifier and TypeMethodDescriptionFlex.fullWidth
(Breakpoint breakpoint, Breakpoint... more) Whether to set width: 100% at various breakpointsFlexItem.fullWidth
(Breakpoint breakpoint, Breakpoint... more) Whether to set width: 100% at various breakpointsFlex.grow
(Breakpoint breakpoint, Breakpoint... more) Whether to add flex: grow at various breakpointsFlexItem.grow
(Breakpoint breakpoint, Breakpoint... more) Whether to add flex: grow at various breakpointsFlex.shrink
(Breakpoint breakpoint, Breakpoint... more) Whether to add flex: shrink at various breakpointsFlexItem.shrink
(Breakpoint breakpoint, Breakpoint... more) Whether to add flex: shrink at various breakpoints -
Uses of Breakpoint in org.patternfly.layout.gallery
Modifier and TypeMethodDescriptionfinal Gallery
Gallery.maxWidths
(Tuple<Breakpoint, String> first, Tuple<Breakpoint, String>... rest) final Gallery
Gallery.minWidths
(Tuple<Breakpoint, String> first, Tuple<Breakpoint, String>... rest) -
Uses of Breakpoint in org.patternfly.style
Modifier and TypeMethodDescriptionstatic Breakpoint
Breakpoint.breakpoint
(int width) Determines the breakpoint for a given width value.static Breakpoint
Returns the enum constant of this class with the specified name.static Breakpoint[]
Breakpoint.values()
Returns an array containing the constants of this enum class, in the order they are declared.static Breakpoint
Breakpoint.verticalBreakpoint
(int height) Determines the breakpoint based on the given height value.Modifier and TypeMethodDescriptionBreakpointCollector.accumulator()
static <V> Collector
<Tuple<Breakpoint, V>, StringBuilder, String> BreakpointCollector.modifiers()
Returns a collector that accumulatesTuple<Breakpoint, V>
objects into aStringBuilder
and produces aString
representation of the accumulated modifiers.static <V> Collector
<Tuple<Breakpoint, V>, StringBuilder, String> Returns a collector that accumulatesTuple<Breakpoint, V>
objects into aStringBuilder
and produces aString
representation of the accumulated modifiers.static <V> Collector
<Tuple<Breakpoint, V>, StringBuilder, String> BreakpointCollector.verticalModifiers()
Returns a collector that accumulatesTuple<Breakpoint, V>
objects into aStringBuilder
and produces aString
representation of the accumulated vertical modifiers.static <V> Collector
<Tuple<Breakpoint, V>, StringBuilder, String> BreakpointCollector.verticalModifiers
(Function<V, String> stringValue) Returns a collector that accumulatesTuple<Breakpoint, V>
objects into aStringBuilder
and produces aString
representation of the accumulated vertical modifiers.Modifier and TypeMethodDescriptionstatic <V> Breakpoints
<V> Breakpoints.breakpoints
(Breakpoint breakpoint, V value) Creates a new instance ofBreakpoints
with a single tuple containing the given breakpoint and value.static <V> Breakpoints
<V> Breakpoints.breakpoints
(Breakpoint breakpoint1, V value1, Breakpoint breakpoint2, V value2) Creates a new instance of Breakpoints with two tuples containing the given breakpoints and values.static <V> Breakpoints
<V> Breakpoints.breakpoints
(Breakpoint breakpoint1, V value1, Breakpoint breakpoint2, V value2, Breakpoint breakpoint3, V value3) Creates a new instance of Breakpoints with three tuples containing the given breakpoints and values.static <V> Breakpoints
<V> Breakpoints.breakpoints
(Breakpoint breakpoint1, V value1, Breakpoint breakpoint2, V value2, Breakpoint breakpoint3, V value3, Breakpoint breakpoint4, V value4) Creates a new instance of Breakpoints with four tuples containing the given breakpoints and values.static <V> Breakpoints
<V> Breakpoints.breakpoints
(Breakpoint breakpoint1, V value1, Breakpoint breakpoint2, V value2, Breakpoint breakpoint3, V value3, Breakpoint breakpoint4, V value4, Breakpoint breakpoint5, V value5) Creates a new instance of Breakpoints with five tuples containing the given breakpoints and values.static <V> Breakpoints
<V> Breakpoints.breakpoints
(Breakpoint breakpoint1, V value1, Breakpoint breakpoint2, V value2, Breakpoint breakpoint3, V value3, Breakpoint breakpoint4, V value4, Breakpoint breakpoint5, V value5, Breakpoint breakpoint6, V value6) Creates a new instance of Breakpoints with six tuples containing the given breakpoints and values.static String
Classes.modifier
(String modifier, Breakpoint breakpoint) Breakpoints.modifiers
(Breakpoint breakpoint) Returns a single CSS modifier class for the given breakpoint, if this class contains the breakpoint.Breakpoints.modifiers
(Breakpoint breakpoint, Function<V, String> stringValue) Returns a single CSS modifier class for the given breakpoint, if this class contains the breakpoint.Modifier and TypeMethodDescriptionstatic <V> Breakpoints
<V> Breakpoints.breakpoints
(Iterable<Tuple<Breakpoint, V>> breakpoints) Creates a new instance of Breakpoints with the given breakpoints and values.