blob: 7b445859f99bf0099bbc65f8b263e47fe6ece743 [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.common.domain;
import org.joda.time.DateTimeConstants;
public enum DayOfWeekType {
MONDAY(DateTimeConstants.MONDAY, "weekDayType.monday"),
TUESDAY(DateTimeConstants.TUESDAY, "weekDayType.tuesday"),
WEDNESDAY(DateTimeConstants.WEDNESDAY, "weekDayType.wednesday"),
THURSDAY(DateTimeConstants.THURSDAY, "weekDayType.thursday"),
FRIDAY(DateTimeConstants.FRIDAY, "weekDayType.friday"),
SATURDAY(DateTimeConstants.SATURDAY, "weekDayType.saturday"),
SUNDAY(DateTimeConstants.SUNDAY, "weekDayType.sunday"),
INVALID(0, "weekDayType.invalid");
private final Integer value;
private final String code;
private DayOfWeekType(Integer value, String code) {
this.value = value;
this.code = code;
}
public Integer getValue() {
return this.value;
}
public String getCode() {
return this.code;
}
public static DayOfWeekType fromInt(final Integer dayOfWeek) {
DayOfWeekType weekDayType = INVALID;
if (dayOfWeek != null) {
switch (dayOfWeek) {
case 1:
weekDayType = MONDAY;
break;
case 2:
weekDayType = TUESDAY;
break;
case 3:
weekDayType = WEDNESDAY;
break;
case 4:
weekDayType = THURSDAY;
break;
case 5:
weekDayType = FRIDAY;
break;
case 6:
weekDayType = SATURDAY;
break;
case 7:
weekDayType = SUNDAY;
break;
default:
break;
}
}
return weekDayType;
}
}