パッケージ org.iplass.mtp.entity

クラス UpdateCondition.UpdateValue

java.lang.Object
org.iplass.mtp.entity.UpdateCondition.UpdateValue
含まれているクラス:
UpdateCondition

public static class UpdateCondition.UpdateValue extends Object
一括更新時の更新項目を表すクラス。
  • コンストラクタの詳細

    • UpdateValue

      public UpdateValue()
    • UpdateValue

      public UpdateValue(String entityField, Object value)
      コンストラクタ。 指定のEntity属性を指定の値で更新するように指定。
      パラメータ:
      entityField - Entity属性名
      value - 更新値
    • UpdateValue

      public UpdateValue(String entityField, ValueExpression value)
      コンストラクタ。 指定のEntity属性を指定の値表現(ValueExpression)で更新するように指定。
      パラメータ:
      entityField - Entity属性名
      value - 更新値を表すValueExpression
    • UpdateValue

      public UpdateValue(EntityField propertyName, ValueExpression value)
      コンストラクタ。 指定のEntity属性を指定の値表現(ValueExpression)で更新するように指定。
      パラメータ:
      propertyName - 更新対象のEntity属性を表すEntityField
      value - 更新値を表すValueExpression
  • メソッドの詳細

    • getEntityField

      public String getEntityField()
      更新対象のEntity属性名を取得。
      戻り値:
    • setEntityField

      public void setEntityField(String entityField)
      更新対象のEntity属性名をセット。
      パラメータ:
      entityField -
    • getPropertyName

      public EntityField getPropertyName()
      更新対象のEntity属性を表すEntityFieldを取得。
      戻り値:
    • setPropertyName

      public void setPropertyName(EntityField propertyName)
      更新対象のEntity属性を表すEntityFieldをセット。
      パラメータ:
      propertyName -
    • getValue

      public ValueExpression getValue()
    • setValue

      public void setValue(ValueExpression value)
    • copy