Interface DMNMetadata


public interface DMNMetadata
  • Method Summary

    Modifier and Type
    Method
    Description
     
    get(String name)
    Returns an attribute associated with this meta data by name.
    set(String name, Object value)
    Sets or changes the value of an attribute
  • Method Details

    • set

      Object set(String name, Object value)
      Sets or changes the value of an attribute
      Parameters:
      name - the attribute name
      value - the attribute value
      Returns:
      the previous value associated with the name if present, null otherwise
    • get

      Object get(String name)
      Returns an attribute associated with this meta data by name.
      Parameters:
      name - the attribute name
      Returns:
      the attribute object
    • asMap

      Map<String,Object> asMap()
      Returns:
      a read-only map of attributes.