Class DateProperty

java.lang.Object
com.infoteria.asteria.flowlibrary2.property.ValueProperty
com.infoteria.asteria.flowlibrary2.property.DateProperty
All Implemented Interfaces:
Property, Cloneable

public class DateProperty extends ValueProperty
Date型のプロパティクラスです。
  • Constructor Details

    • DateProperty

      public DateProperty(String name)
      DateProperty(name, false, true, null) と同じです。
    • DateProperty

      public DateProperty(String name, boolean required)
      DateProperty(name, required, true, null) と同じです。
    • DateProperty

      public DateProperty(String name, boolean required, boolean mapable)
      DateProperty(name, required, mapable, null) と同じです。
    • DateProperty

      public DateProperty(String name, boolean required, boolean mapable, Date value)
      コンストラクタ
      Parameters:
      name - プロパティ名
      required - このプロパティが必須プロパティの場合はtrue
      mapable - このプロパティがMapping可能な場合はtrue
      value - デフォルト値
  • Method Details

    • dateValue

      public Date dateValue()
      プロパティ値を返します。
    • setValue

      public void setValue(Date value)
      プロパティ値を設定します。