Uses of Enum Class
org.faceless.publisher.type.Alignment

Packages that use org.faceless.publisher.type.Alignment
Package
Description
Contains utility classes and interfaces which are used across BFO Publisher
  • Uses of org.faceless.publisher.type.Alignment in org.faceless.publisher.type

    Methods in org.faceless.publisher.type that return org.faceless.publisher.type.Alignment in in
    Modifier and Type
    Method
    Description
    static org.faceless.publisher.type.Alignment
    Alignment.fromString(String ident, String property)
    Convert the sequence of idents [first|last|safe|unsafe|legacy]* [baseline|start|end|center|left|right|flex-start|flex-end|self-start]|self-end|stretch|space-around|space-evenly|space-between] | legacy to the correct enum
    org.faceless.publisher.type.Alignment
    CSSStyle.getAlignContent()
    Returns the value of the align-content property.
    org.faceless.publisher.type.Alignment
    FilterCSSStyle.getAlignContent()
     
    org.faceless.publisher.type.Alignment
    CSSStyle.getAlignItems()
    Returns the value of the align-items property.
    org.faceless.publisher.type.Alignment
    FilterCSSStyle.getAlignItems()
     
    org.faceless.publisher.type.Alignment
    CSSStyle.getAlignSelf()
    Returns the value of the align-self property.
    org.faceless.publisher.type.Alignment
    FilterCSSStyle.getAlignSelf()
     
    org.faceless.publisher.type.Alignment
    CSSStyle.getJustifyContent()
    Returns the value of the justify-content property.
    org.faceless.publisher.type.Alignment
    FilterCSSStyle.getJustifyContent()
     
    org.faceless.publisher.type.Alignment
    CSSStyle.getJustifyItems()
    Returns the value of the align-items property.
    org.faceless.publisher.type.Alignment
    FilterCSSStyle.getJustifyItems()
     
    org.faceless.publisher.type.Alignment
    CSSStyle.getJustifySelf()
    Returns the value of the align-self property.
    org.faceless.publisher.type.Alignment
    FilterCSSStyle.getJustifySelf()
     
    org.faceless.publisher.type.Alignment
    AlignmentContext.getNonLegacyJustifyItems()
     
    org.faceless.publisher.type.Alignment
    Alignment.getUsedAlignOrJustifyContent(AlignmentContext ctx)
    Return the used value for this Alignment if it were the value of "align-content" or "justify-content" (logic is the same).
    org.faceless.publisher.type.Alignment
    Alignment.getUsedAlignSelf(AlignmentContext ctx)
    Return the used value for this Alignment if it were the value of "align-self" The value returned will never be normal or auto.
    org.faceless.publisher.type.Alignment
    Alignment.getUsedJustifySelf(AlignmentContext ctx)
    Return the used value for this Alignment if it were the value of "justify-self" The value returned will never be normal or auto.
    static org.faceless.publisher.type.Alignment
    Alignment.valueOf(String name)
     
    static org.faceless.publisher.type.Alignment[]
    Alignment.values()
     
    org.faceless.publisher.type.Alignment
    Alignment.withoutLegacy()
    Return the Alignment keywords without the "legacy" property.