クラス SelectProperty

java.lang.Object
org.iplass.mtp.entity.definition.PropertyDefinition
org.iplass.mtp.entity.definition.properties.SelectProperty
すべての実装されたインタフェース:
Serializable

public class SelectProperty extends PropertyDefinition
選択肢からのセレクトを行うプロパティを表す定義。 SelectPropertyの定義方法は2つ。
  1. ローカル定義:SelectPropertyに直接選択肢(SelectValue)を定義(selectValueList,localizedSelectValueList)
  2. グローバル定義:共通に定義されているSelectValueDefinitionを指定(selectValueDefinitionName)。
両方設定時にはローカル定義より、グローバル定義の方が優先される。
関連項目:
  • コンストラクタの詳細

    • SelectProperty

      public SelectProperty()
    • SelectProperty

      public SelectProperty(String name)
    • SelectProperty

      public SelectProperty(String name, SelectValue... value)
    • SelectProperty

      public SelectProperty(SelectValueDefinition selectValueDefinition, boolean deepCopy)
  • メソッドの詳細

    • getSelectValue

      public SelectValue getSelectValue(String value)
      指定のvalueのSelectValue定義を返却
      パラメータ:
      value -
      戻り値:
    • getLocalizedSelectValue

      public SelectValue getLocalizedSelectValue(String value, String locale)
      指定のvalueで、指定のlocaleのSelectValue定義を返却。 指定のlocaleで定義されていなかった場合は、デフォルトのSelectValue定義を返却。
      パラメータ:
      value -
      locale -
      戻り値:
    • applySelectValueDefinition

      public void applySelectValueDefinition(SelectValueDefinition selectValueDefinition, boolean deepCopy)
    • getSelectValueDefinitionName

      public String getSelectValueDefinitionName()
    • setSelectValueDefinitionName

      public void setSelectValueDefinitionName(String selectValueDefinitionName)
    • addSelectValue

      public void addSelectValue(SelectValue value)
    • getSelectValueList

      public List<SelectValue> getSelectValueList()
    • setSelectValueList

      public void setSelectValueList(List<SelectValue> selectValueList)
    • addLocalizedSelectValue

      public void addLocalizedSelectValue(LocalizedSelectValueDefinition localizedSelectValue)
    • getLocalizedSelectValueList

      public List<LocalizedSelectValueDefinition> getLocalizedSelectValueList()
    • setLocalizedSelectValueList

      public void setLocalizedSelectValueList(List<LocalizedSelectValueDefinition> localizedSelectValueList)
    • getJavaType

      public Class<?> getJavaType()
      定義:
      getJavaType クラス内 PropertyDefinition
    • getType

      public PropertyDefinitionType getType()
      クラスからコピーされた説明: PropertyDefinition
      enumでPropertyの型を返す。 switch/case文で利用可能なように。
      定義:
      getType クラス内 PropertyDefinition
      戻り値: