org.rx.util.BeanMapFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.util;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.rx.bean.NEnum;
@RequiredArgsConstructor
public enum BeanMapFlag implements NEnum {
NONE(0),
SKIP_NULL(1),
VALIDATE_BEAN(1 << 1),
LOG_ON_MISS_MAPPING(1 << 2),
THROW_ON_MISS_MAPPING(1 << 3);
@Getter
private final int value;
}