public enum PostalDeliveryType extends Enum<PostalDeliveryType>
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
String |
getName() |
String |
toString() |
static PostalDeliveryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostalDeliveryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostalDeliveryType Undefined
public static final PostalDeliveryType CareOfPostOfficeOrPosteRestante
public static final PostalDeliveryType CommunityMailAgent
public static final PostalDeliveryType CommunityMailBag
public static final PostalDeliveryType GeneralPostOfficeBox
public static final PostalDeliveryType LockedMailBagService
public static final PostalDeliveryType PostOfficeBox
public static final PostalDeliveryType MailService
public static final PostalDeliveryType CareOfPostOffice
public static final PostalDeliveryType PrivateMailBagService
public static final PostalDeliveryType RoadsideDelivery
public static final PostalDeliveryType RoadsideMailBoxOrBag
public static final PostalDeliveryType RoadsideMailService
public static PostalDeliveryType[] values()
for (PostalDeliveryType c : PostalDeliveryType.values()) System.out.println(c);
public static PostalDeliveryType 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 getCode()
public String getName()
public String toString()
toString in class Enum<PostalDeliveryType>Copyright © 2021. All rights reserved.