001// Automatically generated by the Thrifty compiler; do not edit!
002// Generated on: 2020-11-05T09:22:38.101Z
003// Source: J:\facelog\facelog-service\IFaceLog.thrift at 15:1
004package net.gdface.facelog.client.thrift;
005
006import javax.annotation.Generated;
007
008@Generated(
009    value = "com.microsoft.thrifty.gen.ThriftyCodeGenerator",
010    comments = "https://github.com/microsoft/thrifty"
011)
012public enum TmpPwdTargetType {
013  USER_GROUP_ID(0),
014
015  DEVICE_GROUP_ID(1),
016
017  USER_ID(2),
018
019  DEVICE_ID(3);
020
021  public final int value;
022
023  TmpPwdTargetType(int value) {
024    this.value = value;
025  }
026
027  public static TmpPwdTargetType findByValue(int value) {
028    switch (value) {
029      case 0: return USER_GROUP_ID;
030      case 1: return DEVICE_GROUP_ID;
031      case 2: return USER_ID;
032      case 3: return DEVICE_ID;
033      default: return null;
034    }
035  }
036}