1 //
2 // Source code recreated from a .class file by IntelliJ IDEA
3 // (powered by Fernflower decompiler)
4 //
5 
6 package com.taobao.android.utils;
7 
8 public enum RotateType {
9     Rotate0(0),
10     Rotate90(90),
11     Rotate180(180),
12     Rotate270(270);
13 
14     public int type;
15 
RotateType(int t)16     private RotateType(int t) {
17         this.type = t;
18     }
19 }
20