001//
002// NAME
003//      Result.java
004//
005// COPYRIGHT
006//      Confidential Property of Kabira Technologies, Inc.
007//      Copyright 2007, 2008 by Kabira Technologies, Inc.
008//      All rights reserved.
009//
010// DESCRIPTION
011//
012// HISTORY
013//     $Revision: 1.1.2.83 $ $Date: 2012/04/03 00:11:05 $
014//
015// WARNINGS
016//      THIS FILE IS GENERATED, DO NOT EDIT
017//
018
019package com.kabira.platform.swtimer;
020
021/**
022<p>
023       Result is returned from the reset operation.
024
025*/
026public enum Result
027{
028        /**
029         The operation succeeded. 
030        */
031        Ok,
032        /**
033         The operation failed. 
034        */
035        Fail;
036
037        private static Result from_ordinal(int ordinal)
038        {
039                return Result.class.getEnumConstants()[ordinal];
040        }
041}