Interface CustomBlockProperty<T>


public interface CustomBlockProperty<T>
This class is used to store a property of a custom block of a generic type.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the name of the property
    Gets the type of the property
    Gets the values of the property
  • Method Details

    • name

      String name()
      Gets the name of the property
      Returns:
      The name of the property.
    • values

      List<T> values()
      Gets the values of the property
      Returns:
      The values of the property.
    • type

      PropertyType type()
      Gets the type of the property
      Returns:
      The type of the property.