com.sas.hls.common
Enum AttributeType

java.lang.Object
  extended by java.lang.Enum<AttributeType>
      extended by com.sas.hls.common.AttributeType
All Implemented Interfaces:
Serializable, Comparable<AttributeType>

Deprecated. As of Java API 1.7. Replaced with AttributeDefinition.AttributeType.

@Deprecated
public enum AttributeType
extends Enum<AttributeType>

The enumeration of value types that an attribute can have.


Enum Constant Summary
BOOLEAN
          Deprecated. A boolean value.
DATE
          Deprecated. A date value.
LONG
          Deprecated. A long numeric.
STRING
          Deprecated. A string value.
 
Method Summary
static AttributeType valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static AttributeType[] values()
          Deprecated. 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
 

Enum Constant Detail

LONG

public static final AttributeType LONG
Deprecated. 
A long numeric.


STRING

public static final AttributeType STRING
Deprecated. 
A string value.


DATE

public static final AttributeType DATE
Deprecated. 
A date value.


BOOLEAN

public static final AttributeType BOOLEAN
Deprecated. 
A boolean value.

Method Detail

values

public static AttributeType[] values()
Deprecated. 
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 (AttributeType c : AttributeType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AttributeType valueOf(String name)
Deprecated. 
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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright (c) 2014, SAS Institute Inc., Cary, NC, USA