-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOperation.java
More file actions
55 lines (48 loc) · 1.15 KB
/
Operation.java
File metadata and controls
55 lines (48 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* Autogenerated by Thrift Compiler (0.9.1)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package tutorial;
import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;
/**
* You can define enums, which are just 32 bit integers. Values are optional
* and start at 1 if not supplied, C style again.
*/
public enum Operation implements org.apache.thrift.TEnum {
ADD(1),
SUBTRACT(2),
MULTIPLY(3),
DIVIDE(4);
private final int value;
private Operation(int value) {
this.value = value;
}
/**
* Get the integer value of this enum value, as defined in the Thrift IDL.
*/
public int getValue() {
return value;
}
/**
* Find a the enum type by its integer value, as defined in the Thrift IDL.
* @return null if the value is not found.
*/
public static Operation findByValue(int value) {
switch (value) {
case 1:
return ADD;
case 2:
return SUBTRACT;
case 3:
return MULTIPLY;
case 4:
return DIVIDE;
default:
return null;
}
}
}