001// 002// NAME 003// Status.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.swbuiltin; 017 018/** 019<p> 020 A generic return status 021 022*/ 023public enum Status 024{ 025 /** 026 Indicates success 027 */ 028 Pass, 029 /** 030 Indicates failure 031 */ 032 Fail; 033 034 private static Status from_ordinal(int ordinal) 035 { 036 return Status.class.getEnumConstants()[ordinal]; 037 } 038}