package com.hanhanfilm.system.spider; /** * https://www.hanhanfilm.com * Created by badouyuren on 2016/6/6. */ public enum SpiderConst { Baidu_YunGuanCe("Baidu-YunGuanCe"), Baiduspider("Baiduspider"), HaoSouSpider("HaoSouSpider"), _360Spider("360Spider"), Sogou("Sogou web spider"), Alibaba("Alibaba.Security.Heimdall"), Coccoc("coccoc/1.0"), QQ_URL_Manager("QQ-URL-Manager"), MJ12bot("MJ12bot/v1.4.5"), Bingbot("bingbot"), YandexBot("YandexBot"), Googlebot("Googlebot"); SpiderConst(String value) { this.value = value; } private String value; public String value() { return value; } }