Class IntegerProperty

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

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

    • IntegerProperty

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

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

      public IntegerProperty(String name, boolean required, boolean mapable)
      コンストラクタ
      Parameters:
      name - プロパティ名
      required - このプロパティが必須プロパティの場合はtrue
      mapable - このプロパティがMapping可能な場合はtrue
    • IntegerProperty

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

    • intValue

      public int intValue()
      プロパティ値をint型で返します。
    • longValue

      public long longValue()
      プロパティ値をlong型で返します。
    • setValue

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