de.greenrobot.daogenerator
Enum PropertyType
java.lang.Object
java.lang.Enum<PropertyType>
de.greenrobot.daogenerator.PropertyType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PropertyType>
-
public enum PropertyType
- extends java.lang.Enum<PropertyType>
-
Currently available types for properties.
Method Summary |
static PropertyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Byte
public static final PropertyType Byte
-
Short
public static final PropertyType Short
-
Int
public static final PropertyType Int
-
Long
public static final PropertyType Long
-
Boolean
public static final PropertyType Boolean
-
Float
public static final PropertyType Float
-
Double
public static final PropertyType Double
-
String
public static final PropertyType String
-
ByteArray
public static final PropertyType ByteArray
-
Date
public static final PropertyType Date
-
values
public static PropertyType[] values()
-
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PropertyType c : PropertyType.values())
System.out.println(c);
-
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static PropertyType valueOf(java.lang.String name)
-
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
- Parameters:
-
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
-
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified name
-
java.lang.NullPointerException
- if the argument is null
Copyright © 2011-2012 greenrobot.de. All Rights Reserved.