001//
002// NAME
003//    Result.java
004//
005// COPYRIGHT
006//    Copyright 2007-2014 Cloud Software Group, Inc. ALL RIGHTS RESERVED.
007//    Cloud Software Group, Inc. Confidential Information
008//
009// HISTORY
010//    $Revision: 1.1.2.84 $ $Date: 2014/02/06 20:35:16 $
011//
012// WARNINGS
013//    THIS FILE IS GENERATED, DO NOT EDIT
014//
015
016package com.kabira.platform.swtimer;
017
018/**
019<p>
020       Result is returned from the reset operation.
021
022*/
023public enum Result
024{
025        /**
026         The operation succeeded. 
027        */
028        Ok,
029        /**
030         The operation failed. 
031        */
032        Fail;
033
034        private static Result from_ordinal(int ordinal)
035        {
036                return Result.class.getEnumConstants()[ordinal];
037        }
038}