Class CalendarWindows.YearsWindows
- All Implemented Interfaces:
Serializable
,HasDisplayData
- Enclosing class:
CalendarWindows
WindowFn
that windows elements into periods measured by years.
By default, periods of multiple years are measured starting at the epoch. This can be
overridden with withStartingYear(int)
.
Years start on the first day of each calendar year, unless overridden by beginningOnDay(int, int)
.
The time zone used to determine calendar boundaries is UTC, unless this is overridden with
the withTimeZone(org.joda.time.DateTimeZone)
method.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.beam.sdk.transforms.windowing.WindowFn
WindowFn.AssignContext, WindowFn.MergeContext
-
Method Summary
Modifier and TypeMethodDescriptionassignWindow
(Instant timestamp) Returns the single window to which elements with this timestamp belong.beginningOnDay
(int monthOfYear, int dayOfMonth) int
int
int
boolean
isCompatible
(WindowFn<?, ?> other) Returns whether this performs the same merging as the givenWindowFn
.void
populateDisplayData
(DisplayData.Builder builder) Register display data for the given transform or component.void
verifyCompatibility
(WindowFn<?, ?> other) ThrowIncompatibleWindowException
if this WindowFn does not perform the same merging as the given $WindowFn
.Returns theCoder
used for serializing the windows used by this windowFn.withStartingYear
(int year) withTimeZone
(DateTimeZone timeZone) Methods inherited from class org.apache.beam.sdk.transforms.windowing.PartitioningWindowFn
assignsToOneWindow, assignWindows, getDefaultWindowMappingFn
Methods inherited from class org.apache.beam.sdk.transforms.windowing.NonMergingWindowFn
isNonMerging, mergeWindows
Methods inherited from class org.apache.beam.sdk.transforms.windowing.WindowFn
getWindowTypeDescriptor
-
Method Details
-
beginningOnDay
-
withStartingYear
-
withTimeZone
-
assignWindow
Description copied from class:PartitioningWindowFn
Returns the single window to which elements with this timestamp belong.- Specified by:
assignWindow
in classPartitioningWindowFn<Object,
IntervalWindow>
-
windowCoder
Description copied from class:WindowFn
Returns theCoder
used for serializing the windows used by this windowFn.- Specified by:
windowCoder
in classWindowFn<Object,
IntervalWindow>
-
isCompatible
Description copied from class:WindowFn
Returns whether this performs the same merging as the givenWindowFn
.- Specified by:
isCompatible
in classWindowFn<Object,
IntervalWindow>
-
verifyCompatibility
Description copied from class:WindowFn
ThrowIncompatibleWindowException
if this WindowFn does not perform the same merging as the given $WindowFn
.- Overrides:
verifyCompatibility
in classWindowFn<Object,
IntervalWindow> - Throws:
IncompatibleWindowException
- if compared WindowFns are not compatible.
-
populateDisplayData
Description copied from class:WindowFn
Register display data for the given transform or component.populateDisplayData(DisplayData.Builder)
is invoked by Pipeline runners to collect display data viaDisplayData.from(HasDisplayData)
. Implementations may callsuper.populateDisplayData(builder)
in order to register display data in the current namespace, but should otherwise usesubcomponent.populateDisplayData(builder)
to use the namespace of the subcomponent.By default, does not register any display data. Implementors may override this method to provide their own display data.
- Specified by:
populateDisplayData
in interfaceHasDisplayData
- Overrides:
populateDisplayData
in classWindowFn<Object,
IntervalWindow> - Parameters:
builder
- The builder to populate with display data.- See Also:
-
getTimeZone
-
getStartDate
-
getDayOfMonth
public int getDayOfMonth() -
getMonthOfYear
public int getMonthOfYear() -
getNumber
public int getNumber()
-