public enum APIThrottlingTier extends Enum<APIThrottlingTier>
| Enum Constant and Description |
|---|
BRONZE |
GOLD |
PLATINUM |
SILVER |
UNLIMITED |
| Modifier and Type | Method and Description |
|---|---|
String |
getState() |
static APIThrottlingTier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static APIThrottlingTier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIThrottlingTier UNLIMITED
public static final APIThrottlingTier PLATINUM
public static final APIThrottlingTier GOLD
public static final APIThrottlingTier SILVER
public static final APIThrottlingTier BRONZE
public static APIThrottlingTier[] values()
for (APIThrottlingTier c : APIThrottlingTier.values()) System.out.println(c);
public static APIThrottlingTier 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 getState()
Copyright © 2020 WSO2 Inc. All rights reserved.