forked from fanruan/demo-tabledata-es
richie
5 years ago
9 changed files with 77 additions and 4 deletions
@ -0,0 +1,30 @@
|
||||
package com.fr.plugin.db.es.fun.type; |
||||
|
||||
/** |
||||
* @author richie |
||||
* @version 10.0 |
||||
* Created by richie on 2020/3/11 |
||||
*/ |
||||
public enum QueryType { |
||||
|
||||
GET("GET"), POST("POST"); |
||||
|
||||
private String type; |
||||
|
||||
QueryType(String type) { |
||||
this.type = type; |
||||
} |
||||
|
||||
public String getType() { |
||||
return type; |
||||
} |
||||
|
||||
public static QueryType parse(String text) { |
||||
for (QueryType qt : values()) { |
||||
if (qt.type.equals(text)) { |
||||
return qt; |
||||
} |
||||
} |
||||
return GET; |
||||
} |
||||
} |
Loading…
Reference in new issue