Dashboard > GreenPepper Demo > ... > Bank > WithdrawType.java
  GreenPepper Demo Log In View a printable version of the current page.  
  WithdrawType.java
Added by admin, last edited by admin on Jan 07, 2009
Labels: 
(None)

WithdrawType.java
package com.greenpepper.confluence.demo.bank;

public enum WithdrawType
{

  ATM("ATM"),
  INTERAC("Interact"),
  PERSONAL_CHECK("Personal Check");

  private final String description;

  private WithdrawType(String description)
  {
    this.description = description;
  }

  @Override
  public String toString()
  {
    return description;
  }
}

DEMONSTRATION LICENSE - This Confluence site is for demonstration purposes only. Evaluate Confluence today.
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: 2.4.3 Build:#705 Mar 21, 2007) - Bug/feature request - Contact Administrators