Package hiiragi283.core.api.gui.sync
Enum HTSyncType
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum HTSyncType extends Enum<HTSyncType>
同期の方向を管理するクラスです。
- Since:
0.8.0
Hiiragi Tsubasa
-
-
Method Summary
Modifier and Type Method Description final Array<HTSyncType>values()Returns an array containing the constants of this enum type, in the order they're declared. final HTSyncTypevalueOf(String value)Returns the enum constant of this type with the specified name. final BooleangetAllowS2C()final BooleangetAllowC2S()final StringgetName()final IntegergetOrdinal()final EnumEntries<HTSyncType>getEntries()-
-
Method Detail
-
values
final Array<HTSyncType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
valueOf
final HTSyncType valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
getAllowS2C
final Boolean getAllowS2C()
-
getAllowC2S
final Boolean getAllowC2S()
-
getOrdinal
final Integer getOrdinal()
-
getEntries
final EnumEntries<HTSyncType> getEntries()
-
-
-
-