Uses of Class
org.usf.java.jinterval.partition.single.Node
-
Packages that use Node Package Description org.usf.java.jinterval.partition.single -
-
Uses of Node in org.usf.java.jinterval.partition.single
Subclasses of Node in org.usf.java.jinterval.partition.single Modifier and Type Class Description class
CyclicIntervalNode<M,T extends Comparable<? super T>>
class
DayOfWeekIntervalNode<M>
class
MonthIntervalNode<M>
class
RegularIntervalNode<M>
class
TimeIntervalNode<M>
Method parameters in org.usf.java.jinterval.partition.single with type arguments of type Node Modifier and Type Method Description static <M> RegularIntervalNode<M>
RegularIntervalNode. ofInstant(M model, java.time.Instant start, java.time.Instant exclusifEnd, java.time.ZoneId zoneId, List<Node<M>> childrens)
static <M> RegularIntervalNode<M>
RegularIntervalNode. ofLocal(M model, java.time.LocalDate start, java.time.LocalDate exclusifEnd, java.time.ZoneId zoneId, List<Node<M>> childrens)
static <M> RegularIntervalNode<M>
RegularIntervalNode. ofLocal(M model, java.time.LocalDateTime start, java.time.LocalDateTime exclusifEnd, java.time.ZoneId zoneId, List<Node<M>> childrens)
static <M> RegularIntervalNode<M>
RegularIntervalNode. ofYear(M model, int start, int exclusifEnd, java.time.ZoneId zoneId, List<Node<M>> childrens)
SingleModelPartition<M>
Node. partitions(java.time.ZonedDateTime start, java.time.ZonedDateTime endExclusive, int step, Collection<Node<M>> primary)
Constructor parameters in org.usf.java.jinterval.partition.single with type arguments of type Node Constructor Description DayOfWeekIntervalNode(M model, java.time.DayOfWeek start, java.time.DayOfWeek exclusifEnd, List<Node<M>> childrens)
MonthIntervalNode(M model, java.time.Month start, java.time.Month exclusifEnd, List<Node<M>> childrens)
Node(M model, List<Node<M>> childrens)
TimeIntervalNode(M model, java.time.LocalTime start, java.time.LocalTime exclusifEnd, List<Node<M>> childrens)
-