Available Methods
- getInstance ( )
- get ( )
- set ( )
- clear ( )
- setTime ( )
- add ( )
- SUNDAY
- getTime ( )
- JANUARY
- getTimeInMillis ( )
- setTimeInMillis ( )
- MARCH
- SATURDAY
- SEPTEMBER
- FEBRUARY
- setTimeZone ( )
- JULY
- DECEMBER
- OCTOBER
- JUNE
- clone ( )
- YEAR
- AUGUST
- getType ( )
- APRIL
- before ( )
- getKeywordValuesForLocale ( )
- MONTH
- WeekData ( )
- NOVEMBER
- DAY_OF_WEEK
- ERA
- getClass ( )
- HOUR
- IS_LEAP_MONTH
- AM_PM
- WEDNESDAY
Related Classes
- java.util.Arrays
- android.content.Context
- java.util.Date
- java.util.Iterator
- android.view.ViewGroup
- java.util.Locale
- android.view.LayoutInflater
- android.os.Build
- android.util.AttributeSet
- java.util.Optional
- android.content.res.TypedArray
- java.text.ParseException
- android.content.res.Resources
- java.util.TreeSet
- android.util.TypedValue
- android.os.Parcelable
- android.graphics.RectF
- android.app.PendingIntent
- java.text.NumberFormat
- android.os.SystemClock
- androidx.annotation.NonNull
- java.util.ResourceBundle
- android.content.res.ColorStateList
- android.text.SpannableString
- android.text.InputType
Java Code Examples for android.icu.util.Calendar#getClass()
The following examples show how to use
android.icu.util.Calendar#getClass() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ChineseDateFormatSymbols.java From j2objc with Apache License 2.0 | 2 votes |
/** * Construct a ChineseDateFormatSymbols for the provided calendar and locale. * @param cal the Calendar * @param locale the locale * @deprecated ICU 50 */ @Deprecated public ChineseDateFormatSymbols(Calendar cal, Locale locale) { // NPE is thrown here when cal is null, like the super class does super(cal.getClass(), locale); }
Example 2
Source File: ChineseDateFormatSymbols.java From j2objc with Apache License 2.0 | 2 votes |
/** * Construct a ChineseDateFormatSymbols for the provided calendar and locale. * @param cal the Calendar * @param locale the locale * @deprecated ICU 50 */ @Deprecated public ChineseDateFormatSymbols(Calendar cal, ULocale locale) { // NPE is thrown here when cal is null, like the super class does super(cal.getClass(), locale); }