Enum HTStorageBlockProperty
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum HTStorageBlockProperty extends Enum<HTStorageBlockProperty>
ブロックの作成に要求される個数を管理するクラスです。
- Since:
0.6.0
Hiiragi Tsubasa
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SINGLEブロックの作成に基本部品が1つ必要
TWO_BY_TWOブロックの作成に基本部品が4つ必要
THREE_BY_THREEブロックの作成に基本部品が9つ必要
-
Method Summary
Modifier and Type Method Description final Array<HTStorageBlockProperty>values()Returns an array containing the constants of this enum type, in the order they're declared. final HTStorageBlockPropertyvalueOf(String value)Returns the enum constant of this type with the specified name. final IntegergetBaseCount()final List<String>getPattern()final StringgetName()final IntegergetOrdinal()final EnumEntries<HTStorageBlockProperty>getEntries()-
-
Method Detail
-
values
final Array<HTStorageBlockProperty> 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 HTStorageBlockProperty 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.)
-
getBaseCount
final Integer getBaseCount()
-
getPattern
final List<String> getPattern()
-
getOrdinal
final Integer getOrdinal()
-
getEntries
final EnumEntries<HTStorageBlockProperty> getEntries()
-
-
-
-