Class SimpleDateFormat
java.lang.Object
java.text.Format
java.text.DateFormat
java.text.SimpleDateFormat
- All Implemented Interfaces:
Cloneable
Deprecated.
this class has many issues in iOS and other platforms, please use the L10NManager
A class for parsing and formatting dates with a given pattern, compatible
with the Java 6 API.
- See Also:
-
Field Summary
Fields inherited from class DateFormat
DEFAULT, FULL, LONG, MEDIUM, SHORTModifier and TypeFieldDescriptionstatic final intDeprecated.Constant for default style (MEDIUM) parsing/formatting pattern.static final intDeprecated.Constant for full style parsing/formatting pattern.static final intDeprecated.Constant for long style parsing/formatting pattern.static final intDeprecated.Constant for medium style parsing/formatting pattern.static final intDeprecated.Constant for short style parsing/formatting pattern. -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Construct a SimpleDateFormat with no pattern.SimpleDateFormat(String pattern) Deprecated.Construct a SimpleDateFormat with a given pattern. -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyPattern(String pattern) Deprecated.Apply a new pattern.clone()Deprecated.Deprecated.Format a given date.Deprecated.Get the date format symbols for parsing/formatting textual components of dates in a localization sensitive way.Deprecated.NOT IMPLEMENTED - use SimpleDateFormat for parsing instead.voidsetDateFormatSymbols(DateFormatSymbols newSymbols) Deprecated.Apply new date format symbols for parsing/formatting textual components of dates in a localisation sensitive way.Deprecated.Methods inherited from class DateFormat
equals, format, getDateInstance, getDateInstance, getDateTimeInstance, getInstance, getTimeInstance, getTimeInstance, hashCode, parseObjectModifier and TypeMethodDescriptionbooleanDeprecated.Indicates whether some other object is "equal to" this one.Deprecated.Format a given object.static final DateFormatDeprecated.Get a DateFormat instance with default style for date (SHORT).static final DateFormatgetDateInstance(int style) Deprecated.Get a DateFormat instance that uses a given style for dates.static final DateFormatgetDateTimeInstance(int dateStyle, int timeStyle) Deprecated.Get a DateFormat instance that uses a given style for dates and times.static final DateFormatDeprecated.Get a DateFormat instance with default style for date/time (SHORT/SHORT).static final DateFormatDeprecated.Get a DateFormat instance with default style for time (SHORT).static final DateFormatgetTimeInstance(int style) Deprecated.Get a DateFormat instance that uses a given style for times.inthashCode()Deprecated.Returns a hash code value for the object.parseObject(String source) Deprecated.NOT IMPLEMENTED - use SimpleDateFormat for parsing instead.Methods inherited from class Object
getClass, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionfinal ClassgetClass()Returns the runtime class of an object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes current thread to wait until another thread invokes the method or the method for this object.final voidwait(long timeout) Causes current thread to wait until either another thread invokes the method or the method for this object, or a specified amount of time has elapsed.final voidwait(long timeout, int nanos) Causes current thread to wait until another thread invokes the method or the method for this object, or some other thread interrupts the current thread, or a certain amount of real time has elapsed.
-
Constructor Details
-
SimpleDateFormat
public SimpleDateFormat()Deprecated.Construct a SimpleDateFormat with no pattern. -
SimpleDateFormat
Deprecated.Construct a SimpleDateFormat with a given pattern.- Parameters:
pattern-
-
-
Method Details
-
toPattern
-
getDateFormatSymbols
Deprecated.Get the date format symbols for parsing/formatting textual components of dates in a localization sensitive way.- Returns:
- current symbols.
-
setDateFormatSymbols
Deprecated.Apply new date format symbols for parsing/formatting textual components of dates in a localisation sensitive way.- Parameters:
newSymbols- new format symbols.
-
applyPattern
Deprecated.Apply a new pattern.- Parameters:
pattern- the pattern to set
-
clone
-
format
Deprecated.Description copied from class:DateFormatFormat a given date.- Overrides:
formatin classDateFormat- Parameters:
source- date to be formatted.- Returns:
- formatted date.
-
parse
Deprecated.Description copied from class:DateFormatNOT IMPLEMENTED - use SimpleDateFormat for parsing instead.- Overrides:
parsein classDateFormat- Throws:
ParseException
-