Java Calendar ALL_STYLES

Syntax

Calendar.ALL_STYLES has the following syntax.

public static final int ALL_STYLES

Example

In the following code shows how to use Calendar.ALL_STYLES field.


import java.util.Calendar;
import java.util.Locale;
//from w w w.  j a v  a2s.  co  m
public class Main {

  public static void main(String[] args) {

    Calendar now = Calendar.getInstance();
    Locale locale = Locale.getDefault();

    String n = now.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.ALL_STYLES, locale);
    
    System.out.printf(n);
  }
}

The code above generates the following result.