00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 package cast.cdl;
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 public enum ReceiverDeleteCondition implements java.io.Serializable
00024 {
00025
00026 DELETERECEIVER,
00027
00028 DONOTDELETERECEIVER;
00029
00030 public void
00031 __write(IceInternal.BasicStream __os)
00032 {
00033 __os.writeByte((byte)ordinal());
00034 }
00035
00036 public static ReceiverDeleteCondition
00037 __read(IceInternal.BasicStream __is)
00038 {
00039 int __v = __is.readByte(2);
00040 return values()[__v];
00041 }
00042
00043 public void
00044 ice_write(Ice.OutputStream __outS)
00045 {
00046 __outS.writeByte((byte)ordinal());
00047 }
00048
00049 public static ReceiverDeleteCondition
00050 ice_read(Ice.InputStream __inS)
00051 {
00052 int __v = __inS.readByte();
00053 if(__v < 0 || __v >= 2)
00054 {
00055 throw new Ice.MarshalException("enumerator out of range");
00056 }
00057 return values()[__v];
00058 }
00059 }