public enum UpdateType extends Enum<UpdateType>
| Enum Constant and Description |
|---|
ADDRESSBOOK
unused
|
API
API updates @since 0.9.53
|
BLOCKLIST
Blocklist updates
|
GEOIP
GeoIP database updates
|
HOMEPAGE
unused
|
NEWS
News and announcements
|
NEWS_SU3
News updates in SU3 format @since 0.9.15
|
PLUGIN
Plugin updates
|
RESEED
unused
|
ROUTER_DEV_SU3
Development router updates in SU3 format @since 0.9.17
|
ROUTER_SIGNED
Signed router updates
|
ROUTER_SIGNED_SU3
Signed router updates in SU3 format @since 0.9.9
|
ROUTER_UNSIGNED
Unsigned router updates
|
TYPE_DUMMY
Dummy: internal use only
|
| Modifier and Type | Method and Description |
|---|---|
static UpdateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateType ADDRESSBOOK
public static final UpdateType API
public static final UpdateType BLOCKLIST
public static final UpdateType GEOIP
public static final UpdateType HOMEPAGE
public static final UpdateType NEWS
public static final UpdateType NEWS_SU3
public static final UpdateType PLUGIN
public static final UpdateType RESEED
public static final UpdateType ROUTER_DEV_SU3
public static final UpdateType ROUTER_SIGNED
public static final UpdateType ROUTER_SIGNED_SU3
public static final UpdateType ROUTER_UNSIGNED
public static final UpdateType TYPE_DUMMY
public static UpdateType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static UpdateType[] values()
for (UpdateType c : UpdateType.values()) System.out.println(c);