Package xyz.krmentos.adofaigg.setting
Enum Class LoadOption
- All Implemented Interfaces:
Serializable,Comparable<LoadOption>,Constable
맵 데이터를 로드하는 옵션을 정의한 열거형입니다.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription데이터를 불러올 때 특정 시간이 지나면 데이터를 받아옵니다.데이터를 불러올 때 마다 데이터를 받아옵니다.특정 시간 마다 데이터를 받아옵니다.데이터를 단 한번 받아온 후 더 이상 받아오지 않습니다.데이터를 수동으로 받아옵니다. -
Method Summary
Modifier and TypeMethodDescriptionstatic LoadOptionReturns the enum constant of this class with the specified name.static LoadOption[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOAD_EVERY_ACTIVE
데이터를 불러올 때 마다 데이터를 받아옵니다. -
LOAD_FOR_TIME
특정 시간 마다 데이터를 받아옵니다. -
LOAD_ACTIVE_FOR_TIME
데이터를 불러올 때 특정 시간이 지나면 데이터를 받아옵니다. -
LOAD_ONLY_ONCE
데이터를 단 한번 받아온 후 더 이상 받아오지 않습니다. -
NOT_AUTO_LOAD
데이터를 수동으로 받아옵니다.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-