Package rife.ioc

Class PropertyValueObject

java.lang.Object
rife.ioc.PropertyValueObject
All Implemented Interfaces:
PropertyValue

public class PropertyValueObject extends Object implements PropertyValue
Holds a single static object property value that doesn't change at runtime.
Since:
1.0
  • Constructor Details

    • PropertyValueObject

      public PropertyValueObject(Object value)
      The constructor that stores the static object instance.
      Parameters:
      value - the static object instance
      Since:
      1.0
  • Method Details

    • getValue

      public Object getValue()
      Description copied from interface: PropertyValue
      Retrieves a property value.
      Specified by:
      getValue in interface PropertyValue
      Returns:
      the requested property value; or

      null if the property value couldn't be found

    • getValueString

      public String getValueString()
      Description copied from interface: PropertyValue
      Retrieves a string representation of the property value.
      Specified by:
      getValueString in interface PropertyValue
      Returns:
      the requested string representation of the property value; or

      null if the property value couldn't be found

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • isNegligible

      public boolean isNegligible()
      Description copied from interface: PropertyValue
      Indicates whether the value provided by this instance is negligible in a textual context. This is for instance applicable to pure whitespace values that when trimmed, have zero length. The property construction logic will check this state to determine if it has to concatenate several property values together as one text result of only use one and discard all other negligible ones.
      Specified by:
      isNegligible in interface PropertyValue
      Returns:
      true if the value is negligible in a textual context; or

      false otherwise

    • isStatic

      public boolean isStatic()
      Description copied from interface: PropertyValue
      Indicates whether the value is statically fixed and not dynamically retrieved at runtime.
      Specified by:
      isStatic in interface PropertyValue
      Returns:
      true if the value is static; or

      false if the value is dynamically retrieved at runtime