Uses of Enum Class
org.patternfly.layout.flex.Gap

Packages that use Gap
Package
Description
Provides the PatternFly flex layout for building custom layouts with full control over spacing, direction, alignment, justification, wrapping, and width.
  • Uses of Gap in org.patternfly.layout.flex

    Subclasses with type arguments of type Gap in org.patternfly.layout.flex
    Modifier and Type
    Class
    Description
    enum 
    Defines the gap property values for a Flex layout.
    Methods in org.patternfly.layout.flex that return Gap
    Modifier and Type
    Method
    Description
    static Gap
    Gap.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Gap[]
    Gap.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in org.patternfly.layout.flex with parameters of type Gap
    Modifier and Type
    Method
    Description
    Flex.columnGap(Gap columnGap)
    Same as columnGap(breakpoints(default_, columnGap))
    Flex.gap(Gap gap)
    Same as gap(breakpoints(default_, gap))
    Flex.rowGap(Gap rowGap)
    Same as rowGap(breakpoints(default_, rowGap))
    Method parameters in org.patternfly.layout.flex with type arguments of type Gap
    Modifier and Type
    Method
    Description
    Flex.columnGap(org.patternfly.style.Breakpoints<Gap> columnGap)
    Gap between columns at various breakpoints.
    Flex.gap(org.patternfly.style.Breakpoints<Gap> gap)
    Gap between items at various breakpoints.
    Flex.rowGap(org.patternfly.style.Breakpoints<Gap> rowGap)
    Gap between rows at various breakpoints.