Uses of Enum Class
com.esprow.oapi.repository.Presence

Packages that use Presence
Package
Description
 
  • Uses of Presence in com.esprow.oapi.repository

    Fields in com.esprow.oapi.repository with type parameters of type Presence
    Modifier and Type
    Field
    Description
    static final List<Presence>
    Presence.VALUES
    A public read-only list of all the 'Presence' enumerators.
    Methods in com.esprow.oapi.repository that return Presence
    Modifier and Type
    Method
    Description
    static Presence
    Presence.get(int value)
    Returns the 'Presence' literal with the specified integer value.
    static Presence
    Presence.get(String literal)
    Returns the 'Presence' literal with the specified literal value.
    static Presence
    Presence.getByName(String name)
    Returns the 'Presence' literal with the specified name.
    OapiComponentRef.getPresence()
    Returns an override for the referenced component's presence.
    OapiComponentRule.getPresence()
    Returns an override for the component's presence when the expression is true.
    OapiField.getPresence()
    Returns one of the possible values of presence (required, optional, forbidden, ignored, constant).
    OapiFieldRef.getPresence()
    Returns an override for the referenced field's presence.
    OapiFieldRule.getPresence()
    Returns one of the possible values of presence (required, optional, forbidden, ignored, constant).
    static Presence
    Presence.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Presence[]
    Presence.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in com.esprow.oapi.repository with parameters of type Presence
    Modifier and Type
    Method
    Description
    void
    OapiComponentRef.setPresence(Presence value)
    Set an override for the referenced component's presence.
    void
    OapiComponentRule.setPresence(Presence value)
    Set an override for the component's presence when the expression is true.
    void
    OapiField.setPresence(Presence value)
    Set one of the possible values of presence (required, optional, forbidden, ignored, constant).
    void
    OapiFieldRef.setPresence(Presence value)
    Set an override for the referenced field's presence.
    void
    OapiFieldRule.setPresence(Presence value)
    Set one of the possible values of presence (required, optional, forbidden, ignored, constant).