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