Uses of Class
org.patternfly.style.Breakpoint
-
Packages that use Breakpoint Package Description org.patternfly.style -
-
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.
-