Year parse(CharSequence text) example

Description

Year parse(CharSequence text) creates an instance of Year from a text string such as 2014.

Syntax

parse has the following syntax.


public static Year parse(CharSequence text)

Example

The following example shows how to use parse.


import java.time.Year;
/*from w  w  w. ja va 2  s .  c om*/
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.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset