OrderPriority enum
Пакет: com.hypixel.hytale.component.dependency
Файл: com/hypixel/hytale/component/dependency/OrderPriority.java
Поля (1)
| Модификаторы | Тип | Имя |
|---|---|---|
final |
int |
value |
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
public |
int |
getValueint getValue() |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.component.dependency;
class="kw">public enum OrderPriority {
CLOSEST(-1431655764),
CLOSE(-715827882),
NORMAL(0),
FURTHER(715827882),
FURTHEST(1431655764);
class="kw">private class="kw">final int value;
OrderPriority(class="kw">final int nullxx) {
this.value = nullxx;
}
class="kw">public int getValue() {
class="kw">return this.value;
}
}