Java tutorial
/* * Copyright (C) 2016 the original author or authors. * * This file is part of jGrades Application Project. * * Licensed under the Apache License, Version 2.0 (the "License"); * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 */ package org.jgrades.admin.api.model; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Sets; import java.time.DayOfWeek; import java.util.Set; public class WorkingDays { private Set<DayOfWeek> daysSet = Sets.newHashSet(); public void addDay(DayOfWeek dayOfWeek) { daysSet.add(dayOfWeek); } public void removeDay(DayOfWeek dayOfWeek) { daysSet.remove(dayOfWeek); } public Set<DayOfWeek> getDays() { return ImmutableSet.copyOf(daysSet); } }