| 102 | } |
| 103 | |
| 104 | public enum Type { |
| 105 | |
| 106 | QI_HOO("360加固"), |
| 107 | AI_JIA_MI("爱加密"), |
| 108 | BANG_BANG("梆梆加固"), |
| 109 | TENCENT("腾讯加固"), |
| 110 | BAI_DU("百度加固"); |
| 111 | |
| 112 | String name; |
| 113 | |
| 114 | Type(String s) { |
| 115 | name = s; |
| 116 | } |
| 117 | |
| 118 | public String getName() { |
| 119 | return name; |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | } |
nothing calls this directly
no outgoing calls
no test coverage detected