All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.houbb.crawler.constant.SelectMethodConst Maven / Gradle / Ivy

package com.github.houbb.crawler.constant;

import com.github.houbb.crawler.annotation.Select;

/**
 * 选择常量
 * @author binbin.hou
 * @see Select#method() 类别
 * @since 0.0.1
 */
public final class SelectMethodConst {

    private SelectMethodConst(){}

    /**
     * val 值
     * @since 0.0.1
     */
    public static final String VAL = "val";

    /**
     * html 值
     * @since 0.0.1
     */
    public static final String HTML = "html";

    /**
     * 文本信息
     * @since 0.0.1
     */
    public static final String TEXT = "text";

    /**
     * 属性
     * @since 0.0.1
     */
    public static final String ATTR = "attr";

    /**
     * 是否拥有类
     * @since 0.0.1
     */
    public static final String HAS_CLASS = "hasClass";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy