Interface IPropertyInfo

All Superinterfaces:
Serializable
All Known Implementing Classes:
PropertyInfo

public interface IPropertyInfo extends Serializable
Interface to store an IProperty metadata.
Author:
ActiveViam
  • Method Summary

    Modifier and Type
    Method
    Description
    The expression of the property.
    The name of the property.
    The plugin key, if one wants to instantiate a custom property.
  • Method Details

    • getName

      String getName()
      The name of the property. It is required to be non null.
      Returns:
      the name of the property.
    • getExpression

      String getExpression()
      The expression of the property. Can be null.
      Returns:
      the expression of the property.
    • getPluginKey

      String getPluginKey()
      The plugin key, if one wants to instantiate a custom property. Can be null.
      Returns:
      the plugin key of the property.