Enum Class LoadOption

java.lang.Object
java.lang.Enum<LoadOption>
xyz.krmentos.adofaigg.setting.LoadOption
All Implemented Interfaces:
Serializable, Comparable<LoadOption>, Constable

public enum LoadOption extends Enum<LoadOption>
맵 데이터를 로드하는 옵션을 정의한 열거형입니다.
See Also:
  • Enum Constant Details

    • LOAD_EVERY_ACTIVE

      public static final LoadOption LOAD_EVERY_ACTIVE
      데이터를 불러올 때 마다 데이터를 받아옵니다.
    • LOAD_FOR_TIME

      public static final LoadOption LOAD_FOR_TIME
      특정 시간 마다 데이터를 받아옵니다.
    • LOAD_ACTIVE_FOR_TIME

      public static final LoadOption LOAD_ACTIVE_FOR_TIME
      데이터를 불러올 때 특정 시간이 지나면 데이터를 받아옵니다.
    • LOAD_ONLY_ONCE

      public static final LoadOption LOAD_ONLY_ONCE
      데이터를 단 한번 받아온 후 더 이상 받아오지 않습니다.
    • NOT_AUTO_LOAD

      public static final LoadOption NOT_AUTO_LOAD
      데이터를 수동으로 받아옵니다.
  • Method Details

    • values

      public static LoadOption[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LoadOption valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null