01: /*
02: * File: status.java
03: * Project: jMOS, com.aranova.java.jmos.enums.mosfield
04: * Revision: 0.9 - Inicial
05: * Date: 28-oct-2005 11:03:43
06: *
07: * Copyright (C) Aragón Innovación Tecnológica S.L.L.
08: * All rights reserved.
09: *
10: * This software is distributed under the terms of the Aranova License version 1.0.
11: * See the terms of the Aranova License in the documentation provided with this software.
12: */
13:
14: package com.aranova.java.jmos.enums.mosfield;
15:
16: /**
17: * Status: Options are “NEW� “UPDATED� “MOVED� “BUSY “ “DELETED�, "NCS CTRL", "MANUAL CTRL", "READY", "NOT READY", "PLAY," "STOP".
18: *
19: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
20: * @version 0.9.1
21: * @since 0.9
22: */
23: public enum status {
24: /**
25: * NEW.
26: */
27: NEW,
28: /**
29: * UPDATED.
30: */
31: UPDATED,
32: /**
33: * MOVED.
34: */
35: MOVED,
36: /**
37: * BUSY.
38: */
39: BUSY,
40: /**
41: * DELETED.
42: */
43: DELETED,
44: /**
45: * NCS_CTRL.
46: */
47: NCS_CTRL,
48: /**
49: * MANUAL_CTRL.
50: */
51: MANUAL_CTRL,
52: /**
53: * READY.
54: */
55: READY,
56: /**
57: * NOT_READY.
58: */
59: NOT_READY,
60: /**
61: * PLAY.
62: */
63: PLAY,
64: /**
65: * STOP.
66: */
67: STOP,
68: /**
69: * ACK.
70: */
71: ACK,
72: /**
73: * NACK.
74: */
75: NACK
76: }
|