Is lenient

TypeMethodSummary
booleanisLenient()Tells whether date/time interpretation is to be lenient.

import java.util.Calendar;

public class Main{
  public static void main(String[] argv){
      System.out.println(Calendar.getInstance().isLenient());
  }
}

The output:


true
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.