$options * @return MetaTableTypeInterface */ public function setOptions(array $options): MetaTableTypeInterface; /** * Returns an array with options for the FormType. * * @return array */ public function getOptions(): array; /** * Sets the order of this meta-field. */ public function setOrder(int $order): MetaTableTypeInterface; /** * Returns the order (default: 0). */ public function getOrder(): int; /** * Whether true if this field is defined by a plugin, or false if it is a value stored in the database. */ public function isDefined(): bool; }