Uses of Class
org.patternfly.style.Breakpoint
-
Packages that use Breakpoint Package Description org.patternfly.component.page org.patternfly.layout.flex org.patternfly.layout.gallery org.patternfly.style -
-
Uses of Breakpoint in org.patternfly.component.page
Method parameters in org.patternfly.component.page with type arguments of type Breakpoint Modifier and Type Method Description PagePage. 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.PagePage. 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
Methods in org.patternfly.layout.flex with parameters of type Breakpoint Modifier and Type Method Description FlexFlex. fullWidth(Breakpoint breakpoint, Breakpoint... more)Whether to set width: 100% at various breakpointsFlexItemFlexItem. fullWidth(Breakpoint breakpoint, Breakpoint... more)Whether to set width: 100% at various breakpointsFlexFlex. grow(Breakpoint breakpoint, Breakpoint... more)Whether to add flex: grow at various breakpointsFlexItemFlexItem. grow(Breakpoint breakpoint, Breakpoint... more)Whether to add flex: grow at various breakpointsFlexFlex. shrink(Breakpoint breakpoint, Breakpoint... more)Whether to add flex: shrink at various breakpointsFlexItemFlexItem. shrink(Breakpoint breakpoint, Breakpoint... more)Whether to add flex: shrink at various breakpoints -
Uses of Breakpoint in org.patternfly.layout.gallery
Method parameters in org.patternfly.layout.gallery with type arguments of type Breakpoint Modifier and Type Method Description GalleryGallery. maxWidths(Tuple<Breakpoint,String> first, Tuple<Breakpoint,String>... rest)GalleryGallery. minWidths(Tuple<Breakpoint,String> first, Tuple<Breakpoint,String>... rest) -
Uses of Breakpoint in org.patternfly.style
Methods in org.patternfly.style that return Breakpoint Modifier and Type Method Description static BreakpointBreakpoint. breakpoint(int width)Determines the breakpoint for a given width value.static BreakpointBreakpoint. valueOf(String name)Returns the enum constant of this type with the specified name.static Breakpoint[]Breakpoint. values()Returns an array containing the constants of this enum type, in the order they are declared.static BreakpointBreakpoint. verticalBreakpoint(int height)Determines the breakpoint based on the given height value.Methods in org.patternfly.style that return types with arguments of type Breakpoint Modifier and Type Method Description BiConsumer<StringBuilder,Tuple<Breakpoint,V>>BreakpointCollector. accumulator()static <V> Collector<Tuple<Breakpoint,V>,StringBuilder,String>BreakpointCollector. modifiers()Returns a collector that accumulatesTuple<Breakpoint, V>objects into aStringBuilderand produces aStringrepresentation of the accumulated modifiers.static <V> Collector<Tuple<Breakpoint,V>,StringBuilder,String>BreakpointCollector. modifiers(Function<V,String> stringValue)Returns a collector that accumulatesTuple<Breakpoint, V>objects into aStringBuilderand produces aStringrepresentation of the accumulated modifiers.static <V> Collector<Tuple<Breakpoint,V>,StringBuilder,String>BreakpointCollector. verticalModifiers()Returns a collector that accumulatesTuple<Breakpoint, V>objects into aStringBuilderand produces aStringrepresentation 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 aStringBuilderand produces aStringrepresentation of the accumulated vertical modifiers.Methods in org.patternfly.style with parameters of type Breakpoint Modifier and Type Method Description static <V> Breakpoints<V>Breakpoints. breakpoints(Breakpoint breakpoint, V value)Creates a new instance ofBreakpointswith 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 StringClasses. modifier(String modifier, Breakpoint breakpoint)StringBreakpoints. modifiers(Breakpoint breakpoint)Returns a single CSS modifier class for the given breakpoint, if this class contains the breakpoint.StringBreakpoints. modifiers(Breakpoint breakpoint, Function<V,String> stringValue)Returns a single CSS modifier class for the given breakpoint, if this class contains the breakpoint.Method parameters in org.patternfly.style with type arguments of type Breakpoint Modifier and Type Method Description static <V> Breakpoints<V>Breakpoints. breakpoints(Iterable<Tuple<Breakpoint,V>> breakpoints)Creates a new instance of Breakpoints with the given breakpoints and values.
-