public enum JodaTime extends Enum<JodaTime>
| Modifier and Type | Method and Description | 
|---|---|
| static String | getVersion()Returns the current version of joda-time used during runtime; or null
 if it cannot be determined. | 
| static boolean | hasExpectedBehavior()Returns true if the current version of joda-time used during runtime
 behaves as expected by the Java SDK; false otherwise. | 
| static JodaTime | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static JodaTime[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static JodaTime[] values()
for (JodaTime c : JodaTime.values()) System.out.println(c);
public static JodaTime valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static String getVersion()
public static boolean hasExpectedBehavior()
Copyright © 2017. All rights reserved.