public static enum InboxDto.InboxTypeEnum extends Enum<InboxDto.InboxTypeEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
InboxDto.InboxTypeEnum.Adapter |
| Enum Constant and Description |
|---|
HTTP_INBOX |
SMTP_INBOX |
| Modifier and Type | Method and Description |
|---|---|
static InboxDto.InboxTypeEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static InboxDto.InboxTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InboxDto.InboxTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InboxDto.InboxTypeEnum HTTP_INBOX
public static final InboxDto.InboxTypeEnum SMTP_INBOX
public static InboxDto.InboxTypeEnum[] values()
for (InboxDto.InboxTypeEnum c : InboxDto.InboxTypeEnum.values()) System.out.println(c);
public static InboxDto.InboxTypeEnum 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 getValue()
public String toString()
toString in class Enum<InboxDto.InboxTypeEnum>public static InboxDto.InboxTypeEnum fromValue(String value)
Copyright © 2023. All rights reserved.