PathEvent class

Пакет: com.hypixel.hytale.server.core.asset.monitor

Файл: com/hypixel/hytale/server/core/asset/monitor/PathEvent.java

Поля (1)

МодификаторыТипИмя
final EventKind eventKind

Методы (2)

МодификаторыВозвратСигнатура
public EventKind getEventKindEventKind getEventKind()
public long getTimestamplong getTimestamp()

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.asset.monitor;

class="kw">import javax.annotation.Nonnull;

class="kw">public class PathEvent {
   class="kw">private class="kw">final EventKind eventKind;
   class="kw">private class="kw">final long timestamp;

   class="kw">public PathEvent(EventKind var1, long var2) {
      this.eventKind = var1;
      this.timestamp = var2;
   }

   class="kw">public EventKind getEventKind() {
      class="kw">return this.eventKind;
   }

   class="kw">public long getTimestamp() {
      class="kw">return this.timestamp;
   }

   @Nonnull
   @Override
   class="kw">public String toString() {
      class="kw">return "PathEvent{eventKind=" + this.eventKind + ", timestamp=" + this.timestamp + "}";
   }
}