Interface PrismPropertyValue<T>

All Superinterfaces:
DebugDumpable, Freezable, MidpointOriginMetadata, PathVisitable, PrismValue, PrismVisitable, Revivable, SchemaLookup.Aware, Serializable, Visitable
All Known Implementing Classes:
PrismPropertyValueImpl

public interface PrismPropertyValue<T> extends DebugDumpable, Serializable, PrismValue
Author:
lazyman
  • Method Details

    • setValue

      void setValue(T value)
    • getValue

      T getValue()
    • getRawElement

      XNode getRawElement()
    • setRawElement

      void setRawElement(XNode rawElement)
    • getExpression

      @Nullable @Nullable ExpressionWrapper getExpression()
    • setExpression

      void setExpression(@Nullable @Nullable ExpressionWrapper expression)
    • findPartial

      <IV extends PrismValue, ID extends ItemDefinition<?>> PartiallyResolvedItem<IV,ID> findPartial(ItemPath path)
    • clone

      Description copied from interface: PrismValue
      Literal clone.
      Specified by:
      clone in interface PrismValue
    • cloneComplex

      PrismPropertyValue<T> cloneComplex(@NotNull @NotNull CloneStrategy strategy)
      Description copied from interface: PrismValue
      Complex clone with different cloning strategies.
      Specified by:
      cloneComplex in interface PrismValue
      See Also:
    • equals

      boolean equals(PrismPropertyValue<?> other, @NotNull @NotNull ParameterizedEquivalenceStrategy strategy, @Nullable @Nullable MatchingRule<T> matchingRule)
      Returns:
      true if values are equivalent under given strategy and (if present) also under matching rule. Some of the strategy requirements (e.g. literal DOM comparison) can be skipped if matching rule is used.
    • equals

      boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      int hashCode()
      Overrides:
      hashCode in class Object
    • debugDump

      String debugDump(int indent, boolean detailedDump)
    • toJaxbElement

      jakarta.xml.bind.JAXBElement<T> toJaxbElement()
      Returns JAXBElement corresponding to the this value. Name of the element is the name of parent property; its value is the real value of the property.
      Returns:
      Created JAXBElement.
    • getRealClass

      Class<?> getRealClass()
      Specified by:
      getRealClass in interface PrismValue
    • getRealValue

      @Nullable T getRealValue()
      Under what circumstances can this method return null (for properties)?
      Specified by:
      getRealValue in interface PrismValue
    • getRealValueRequired

      @NotNull default T getRealValueRequired()
    • getRealValue

      static <T> T getRealValue(PrismPropertyValue<T> propertyValue)
    • isNotFalse

      static boolean isNotFalse(PrismPropertyValue<Boolean> booleanPropertyValue)
    • isTrue

      static boolean isTrue(PrismPropertyValue<Boolean> booleanPropertyValue)