public enum GearType extends Enum<GearType>
| Modifier and Type | Method and Description |
|---|---|
String |
getPrefix() |
static GearType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GearType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GearType seine
public static final GearType longline
public static GearType[] values()
for (GearType c : GearType.values()) System.out.println(c);
public static GearType 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 String getPrefix()
Copyright © 2008–2017 IRD. All rights reserved.