
org.rx.crawler.RegionFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib-x Show documentation
Show all versions of rxlib-x Show documentation
A set of utilities for Java
The newest version!
package org.rx.crawler;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.rx.bean.NEnum;
@RequiredArgsConstructor
@Getter
public enum RegionFlags implements NEnum {
NONE(0),
DOMAIN_TOP(1),
HTTP_ONLY(1 << 1),
ALL(DOMAIN_TOP.value | HTTP_ONLY.value);
private final int value;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy