public enum GRDeliveryMethod extends java.lang.Enum<GRDeliveryMethod>
| Enum Constant and Description |
|---|
DELIVERY_MODE_DIRECT_DOWNLOAD |
DELIVERY_MODE_FREIGHT |
DELIVERY_MODE_MAIL |
DELIVERY_MODE_OWN_FLEET |
DELIVERY_MODE_PICK_UP |
| Modifier and Type | Method and Description |
|---|---|
java.net.URI |
getURI() |
static GRDeliveryMethod |
parseString(java.lang.String fragment)
Tries to match the given string against all enum values.
|
static GRDeliveryMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GRDeliveryMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GRDeliveryMethod DELIVERY_MODE_DIRECT_DOWNLOAD
public static final GRDeliveryMethod DELIVERY_MODE_FREIGHT
public static final GRDeliveryMethod DELIVERY_MODE_MAIL
public static final GRDeliveryMethod DELIVERY_MODE_OWN_FLEET
public static final GRDeliveryMethod DELIVERY_MODE_PICK_UP
public static GRDeliveryMethod[] values()
for (GRDeliveryMethod c : GRDeliveryMethod.values()) System.out.println(c);
public static GRDeliveryMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.net.URI getURI()
public static GRDeliveryMethod parseString(java.lang.String fragment)
fragment - string to matchCopyright © 2019. All Rights Reserved.