All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.ical.iter.SingleValueGenerator Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2015, 2016 Dirk Lemmermann Software & Consulting (dlsc.com)
 * 

* This file is part of CalendarFX. */ package com.google.ical.iter; /** * A marker for Generators that generate exactly one value per * outer cycle. For example, BYHOUR=3 generates exactly one hour per day and * BYMONTHDAY=12 generates exactly one day per month but BYHOUR=3,6 does not * nor does BYMONTHDAY=31. */ abstract class SingleValueGenerator extends Generator { abstract int getValue(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy