eu.dicodeproject.analysis.hbase
Enum TweetCols

java.lang.Object
  extended by java.lang.Enum<TweetCols>
      extended by eu.dicodeproject.analysis.hbase.TweetCols
All Implemented Interfaces:
Serializable, Comparable<TweetCols>

public enum TweetCols
extends Enum<TweetCols>


Enum Constant Summary
CREATION_DATE
          Column names.
FROM
           
FROM_ID
           
GEO
           
HASHTAGS
           
IMAGE_URL
           
IN_REPLY_TO_STATUS_ID
           
LANG
           
PLACE_COUNTRY_CODE
           
PLACE_FULL_NAME
           
PLACE_LATITUDE
           
PLACE_LONGITUDE
           
PLACE_TYPE
           
RETWEET_COUNT
           
SOURCE
           
TEXT
           
TO
           
URL
           
USER_CREATED_AT
           
USER_DESCRIPTION
           
USER_FAVOURITES_COUNT
           
USER_FOLLOWERS_COUNT
           
USER_FRIENDS_COUNT
           
USER_IDS_MENTIONED
           
USER_LISTED_COUNT
           
USER_LOCATION
           
USER_NAME
           
USER_NAMES_MENTIONED
           
USER_PROFILE_BACKGROUND_COLOR
           
USER_PROFILE_BACKGROUND_IMAGE_URL
           
USER_PROFILE_IMAGE_URL
           
USER_PROFILE_LINK_COLOR
           
USER_PROFILE_SIDEBAR_BORDER_COLOR
           
USER_PROFILE_SIDEBAR_FILL_COLOR
           
USER_PROFILE_TEXT_COLOR
           
USER_SCREEN_NAME
           
USER_STATUSES_COUNT
           
USER_TIMEZONE
           
USER_URL
           
USER_UTC_OFFSET
           
 
Method Summary
abstract  byte[] bytes()
           
static TweetCols valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TweetCols[] 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
 

Enum Constant Detail

CREATION_DATE

public static final TweetCols CREATION_DATE
Column names.


FROM

public static final TweetCols FROM

FROM_ID

public static final TweetCols FROM_ID

GEO

public static final TweetCols GEO

IMAGE_URL

public static final TweetCols IMAGE_URL

LANG

public static final TweetCols LANG

SOURCE

public static final TweetCols SOURCE

TEXT

public static final TweetCols TEXT

TO

public static final TweetCols TO

HASHTAGS

public static final TweetCols HASHTAGS

IN_REPLY_TO_STATUS_ID

public static final TweetCols IN_REPLY_TO_STATUS_ID

PLACE_COUNTRY_CODE

public static final TweetCols PLACE_COUNTRY_CODE

PLACE_FULL_NAME

public static final TweetCols PLACE_FULL_NAME

PLACE_TYPE

public static final TweetCols PLACE_TYPE

PLACE_LATITUDE

public static final TweetCols PLACE_LATITUDE

PLACE_LONGITUDE

public static final TweetCols PLACE_LONGITUDE

RETWEET_COUNT

public static final TweetCols RETWEET_COUNT

URL

public static final TweetCols URL

USER_IDS_MENTIONED

public static final TweetCols USER_IDS_MENTIONED

USER_NAMES_MENTIONED

public static final TweetCols USER_NAMES_MENTIONED

USER_CREATED_AT

public static final TweetCols USER_CREATED_AT

USER_DESCRIPTION

public static final TweetCols USER_DESCRIPTION

USER_FAVOURITES_COUNT

public static final TweetCols USER_FAVOURITES_COUNT

USER_FOLLOWERS_COUNT

public static final TweetCols USER_FOLLOWERS_COUNT

USER_FRIENDS_COUNT

public static final TweetCols USER_FRIENDS_COUNT

USER_LISTED_COUNT

public static final TweetCols USER_LISTED_COUNT

USER_LOCATION

public static final TweetCols USER_LOCATION

USER_NAME

public static final TweetCols USER_NAME

USER_PROFILE_BACKGROUND_COLOR

public static final TweetCols USER_PROFILE_BACKGROUND_COLOR

USER_PROFILE_BACKGROUND_IMAGE_URL

public static final TweetCols USER_PROFILE_BACKGROUND_IMAGE_URL

USER_PROFILE_IMAGE_URL

public static final TweetCols USER_PROFILE_IMAGE_URL

USER_PROFILE_LINK_COLOR

public static final TweetCols USER_PROFILE_LINK_COLOR

USER_PROFILE_SIDEBAR_BORDER_COLOR

public static final TweetCols USER_PROFILE_SIDEBAR_BORDER_COLOR

USER_PROFILE_SIDEBAR_FILL_COLOR

public static final TweetCols USER_PROFILE_SIDEBAR_FILL_COLOR

USER_PROFILE_TEXT_COLOR

public static final TweetCols USER_PROFILE_TEXT_COLOR

USER_SCREEN_NAME

public static final TweetCols USER_SCREEN_NAME

USER_STATUSES_COUNT

public static final TweetCols USER_STATUSES_COUNT

USER_TIMEZONE

public static final TweetCols USER_TIMEZONE

USER_URL

public static final TweetCols USER_URL

USER_UTC_OFFSET

public static final TweetCols USER_UTC_OFFSET
Method Detail

values

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

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

valueOf

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

bytes

public abstract byte[] bytes()


Copyright © 2011. All Rights Reserved.