blob: 63e345e9a3ee4ac513ec6f4ab34be0a864d04da2 [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 io.mifos.individuallending.api.v1.domain.product;
import java.util.Arrays;
import java.util.Optional;
/**
* @author Myrle Krantz
*/
public enum ChargeProportionalDesignator {
NOT_PROPORTIONAL("{notproportional}", 0),
MAXIMUM_BALANCE_DESIGNATOR("{maximumbalance}", 1),
RUNNING_BALANCE_DESIGNATOR("{runningbalance}", 2),
PRINCIPAL_DESIGNATOR("{principal}", 3),
REQUESTED_DISBURSEMENT_DESIGNATOR("{requesteddisbursement}", 4),
TO_ACCOUNT_DESIGNATOR("{toAccount}", 5),
FROM_ACCOUNT_DESIGNATOR("{fromAccount}", 6),
REQUESTED_REPAYMENT_DESIGNATOR("{requestedrepayment}", 7),
CONTRACTUAL_REPAYMENT_DESIGNATOR("{contractualrepayment}", 8),
;
private final String value;
private final int orderOfApplication;
ChargeProportionalDesignator(final String value, final int orderOfApplication) {
this.value = value;
this.orderOfApplication = orderOfApplication;
}
public String getValue() {
return value;
}
public int getOrderOfApplication() {
return orderOfApplication;
}
public static Optional<ChargeProportionalDesignator> fromString(final String value) {
if (value == null)
return Optional.of(NOT_PROPORTIONAL);
return Arrays.stream(ChargeProportionalDesignator.values())
.filter(x -> x.getValue().equals(value))
.findFirst();
}
}