Year parse(CharSequence text)
creates
an instance of Year from a text string such as 2014.
parse
has the following syntax.
public static Year parse(CharSequence text)
The following example shows how to use parse
.
import java.time.Year; public class Main { public static void main(String[] args) { Year y = Year.parse("2014"); System.out.println(y); } }
The code above generates the following result.