Year getValue() example
Description
Year getValue()
gets the year value.
Syntax
getValue
has the following syntax.
public int getValue()
Example
The following example shows how to use getValue
.
import java.time.Year;
//from w w w .ja v a 2 s . c o m
public class Main {
public static void main(String[] args) {
Year y = Year.of(2014);
System.out.println(y.getValue());
}
}
The code above generates the following result.