blob: 11c7dab2db54327c4e453866f96f7ec9ce3c9c40 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.fineract.portfolio.loanaccount.guarantor.domain;
/**
* Enum representation of {@link Guarantor} status states.
*/
public enum GuarantorFundStatusType {
INVALID(0, "guarantorFundStatusType.invalid"), //
ACTIVE(100, "guarantorFundStatusType.active"), //
COMPLETED(200, "guarantorFundStatusType.completed"), //
WITHDRAWN(300, "guarantorFundStatusType.withdrawn"), //
DELETED(400, "guarantorFundStatusType.deleted");
private final Integer value;
private final String code;
public static GuarantorFundStatusType fromInt(final Integer type) {
GuarantorFundStatusType enumeration = GuarantorFundStatusType.INVALID;
switch (type) {
case 100:
enumeration = GuarantorFundStatusType.ACTIVE;
break;
case 200:
enumeration = GuarantorFundStatusType.COMPLETED;
break;
case 300:
enumeration = GuarantorFundStatusType.WITHDRAWN;
break;
case 400:
enumeration = GuarantorFundStatusType.DELETED;
break;
}
return enumeration;
}
private GuarantorFundStatusType(final Integer value, final String code) {
this.value = value;
this.code = code;
}
public boolean hasStateOf(final GuarantorFundStatusType state) {
return this.value.equals(state.getValue());
}
public Integer getValue() {
return this.value;
}
public String getCode() {
return this.code;
}
public boolean isActive() {
return this.value.equals(GuarantorFundStatusType.ACTIVE.getValue());
}
public boolean isClosed() {
return isWithdrawn() || isCompleted() || isDeleted();
}
public boolean isWithdrawn() {
return this.value.equals(GuarantorFundStatusType.WITHDRAWN.getValue());
}
public boolean isCompleted() {
return this.value.equals(GuarantorFundStatusType.COMPLETED.getValue());
}
public boolean isDeleted() {
return this.value.equals(GuarantorFundStatusType.DELETED.getValue());
}
}