Enum TrackerEvent
- java.lang.Object
-
- java.lang.Enum<TrackerEvent>
-
- org.johnnei.javatorrent.bittorrent.tracker.TrackerEvent
-
- All Implemented Interfaces:
Serializable,Comparable<TrackerEvent>
public enum TrackerEvent extends Enum<TrackerEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVENT_COMPLETEDEVENT_NONEEVENT_STARTEDEVENT_STOPPED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetId()StringgetTextual()static TrackerEventvalueOf(String name)Returns the enum constant of this type with the specified name.static TrackerEvent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVENT_NONE
public static final TrackerEvent EVENT_NONE
-
EVENT_COMPLETED
public static final TrackerEvent EVENT_COMPLETED
-
EVENT_STARTED
public static final TrackerEvent EVENT_STARTED
-
EVENT_STOPPED
public static final TrackerEvent EVENT_STOPPED
-
-
Method Detail
-
values
public static TrackerEvent[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TrackerEvent c : TrackerEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrackerEvent valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getTextual
public String getTextual()
- Returns:
- The textual format as defined in BEP 3.
-
getId
public int getId()
-
-