summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/bwlp/thrift/iface/InvocationError.java
blob: 5f2b9a9cac2af4368c049dde6ea6a3c64e301d70 (plain) (blame)
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
56
57
58
59
60
/**
 * Autogenerated by Thrift Compiler (0.9.3)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package org.openslx.bwlp.thrift.iface;


import java.util.Map;
import java.util.HashMap;
import org.apache.thrift.TEnum;

public enum InvocationError implements org.apache.thrift.TEnum {
  MISSING_DATA(0),
  INVALID_DATA(1),
  UNKNOWN_IMAGE(2),
  UNKNOWN_USER(3),
  UNKNOWN_LECTURE(4),
  INVALID_SHARE_MODE(5),
  INTERNAL_SERVER_ERROR(6);

  private final int value;

  private InvocationError(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 InvocationError findByValue(int value) { 
    switch (value) {
      case 0:
        return MISSING_DATA;
      case 1:
        return INVALID_DATA;
      case 2:
        return UNKNOWN_IMAGE;
      case 3:
        return UNKNOWN_USER;
      case 4:
        return UNKNOWN_LECTURE;
      case 5:
        return INVALID_SHARE_MODE;
      case 6:
        return INTERNAL_SERVER_ERROR;
      default:
        return null;
    }
  }
}