Interface IPropertyBase

All Known Subinterfaces:
ICustomProperty, IProperty, ISystemProperty

@Deprecated(since="12.0.6", forRemoval=true) public interface IPropertyBase
Deprecated, for removal: This API element is subject to removal in a future version.
Base interface for all properties
API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Deprecated, for removal: This API element is subject to removal in a future version.
    int
    Deprecated, for removal: This API element is subject to removal in a future version.
    long
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deprecated, for removal: This API element is subject to removal in a future version.
    void
    setValue(boolean value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    void
    setValue(int value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    void
    setValue(long value)
    Deprecated, for removal: This API element is subject to removal in a future version.
    void
    Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • getName

      @Deprecated(since="12.0.6", forRemoval=true) String getName()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the property name
      Returns:
      property name
      API:
      This public API is available in Java.
    • getValue

      @Deprecated(since="12.0.6", forRemoval=true) String getValue()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the property value as String
      Returns:
      property value.
      See Also:
      API:
      This public API is available in Java.
    • getIntValue

      @Deprecated(since="12.0.6", forRemoval=true) int getIntValue()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the property value as int
      Returns:
      property value as int
      Throws:
      NumberFormatException - if int value cannot be parsed
      See Also:
      API:
      This public API is available in Java.
    • getLongValue

      @Deprecated(since="12.0.6", forRemoval=true) long getLongValue()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the property value as long
      Returns:
      property value as long
      Throws:
      NumberFormatException - if long value cannot be parsed
      See Also:
      API:
      This public API is available in Java.
    • getBooleanValue

      @Deprecated(since="12.0.6", forRemoval=true) boolean getBooleanValue()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Gets the property value as boolean
      Returns:
      property value as boolean
      See Also:
      API:
      This public API is available in Java.
    • setValue

      @Deprecated(since="12.0.6", forRemoval=true) void setValue(String value)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Sets the value of the property
      Parameters:
      value - the new value
      API:
      This public API is available in Java.
    • setValue

      @Deprecated(since="12.0.6", forRemoval=true) void setValue(int value)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Sets the value of the property
      Parameters:
      value - the new value
      API:
      This public API is available in Java.
    • setValue

      @Deprecated(since="12.0.6", forRemoval=true) void setValue(long value)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Sets the value of the property
      Parameters:
      value - the new value
      API:
      This public API is available in Java.
    • setValue

      @Deprecated(since="12.0.6", forRemoval=true) void setValue(boolean value)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Sets the value of the property
      Parameters:
      value - the new value
      API:
      This public API is available in Java.