Uses of Class
org.apache.camel.example.cafe.DrinkType

Packages that use DrinkType
org.apache.camel.example.cafe   
 

Uses of DrinkType in org.apache.camel.example.cafe
 

Methods in org.apache.camel.example.cafe that return DrinkType
 DrinkType OrderItem.getDrinkType()
           
static DrinkType DrinkType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DrinkType[] DrinkType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.camel.example.cafe with parameters of type DrinkType
 void Order.addItem(DrinkType drinkType, int shots, boolean iced)
           
 

Constructors in org.apache.camel.example.cafe with parameters of type DrinkType
Drink(int orderNumber, DrinkType drinkType, boolean hot, int shots)
           
OrderItem(Order order, DrinkType type, int shots, boolean iced)
           
 



Apache CAMEL