Interface PropertyKind<T>


  • public interface PropertyKind<T>
    The kind of the property, this can be used to fetch some specific property of the execution result.
    • Method Detail

      • create

        static <T> PropertyKind<T> create​(String name,
                                          Class<T> type)
        Returns:
        a property kind matching the provided name, the type can be used to check the property value type or cast it to the expected type
      • name

        String name()
        Returns:
        the property name
      • type

        Class<T> type()
        Returns:
        the property type