public enum Product extends Enum<Product> implements EnumValue
Enum Constant and Description |
---|
AGENCY |
COMMODITY |
CORPORATE |
CURRENCY |
EQUITY |
FINANCING |
GOVERNMENT |
INDEX |
LOAN |
MONEYMARKET |
MORTGAGE |
MUNICIPAL |
OTHER |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(byte[] val) |
boolean |
equals(byte[] val,
int offset,
int length) |
byte[] |
getValue() |
static Product |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Product[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Product AGENCY
public static final Product COMMODITY
public static final Product CORPORATE
public static final Product CURRENCY
public static final Product EQUITY
public static final Product GOVERNMENT
public static final Product INDEX
public static final Product LOAN
public static final Product MONEYMARKET
public static final Product MORTGAGE
public static final Product MUNICIPAL
public static final Product OTHER
public static final Product FINANCING
public static Product[] values()
for (Product c : Product.values()) System.out.println(c);
public static Product 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 boolean equals(byte[] val, int offset, int length)
Copyright © 2000–2022 EPAM Systems. All rights reserved.