
org.meridor.fias.enums.ActionStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fias-client Show documentation
Show all versions of fias-client Show documentation
Java client for FNS FIAS database.
The newest version!
package org.meridor.fias.enums;
import java.math.BigInteger;
public enum ActionStatus {
INITIALIZED(01),
ADDED(10),
MODIFIED(20),
GROUP_MODIFIED(30),
REMOVED(30),
PARENT_REMOVED(31),
MERGED(40),
PARENT_MERGED(41),
REMOVED_VIA_MERGE(42),
ADDED_VIA_MERGE(43),
RESUBORDONER(50),
PARENT_RESUBORDONER(51),
REMOVED_VIA_DIVISION(60),
ADDED_VIA_DIVISION(61),
RESTORED(70);
private final Integer actionStatus;
ActionStatus(Integer actionStatus) {
this.actionStatus = actionStatus;
}
public BigInteger getActionStatus() {
return new BigInteger(actionStatus.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy