public enum CLICommand extends Enum<CLICommand>
CLI. Values here correspond to methods in
ClientRecommender.| Modifier and Type | Method and Description |
|---|---|
static CLICommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CLICommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CLICommand SETPREFERENCE
public static final CLICommand REMOVEPREFERENCE
public static final CLICommand SETUSERTAG
public static final CLICommand SETITEMTAG
public static final CLICommand INGEST
public static final CLICommand ESTIMATEPREFERENCE
public static final CLICommand ESTIMATEFORANONYMOUS
public static final CLICommand RECOMMEND
public static final CLICommand RECOMMENDTOANONYMOUS
public static final CLICommand RECOMMENDTOMANY
public static final CLICommand MOSTPOPULARITEMS
public static final CLICommand MOSTSIMILARITEMS
public static final CLICommand SIMILARITYTOITEM
public static final CLICommand RECOMMENDEDBECAUSE
public static final CLICommand REFRESH
public static final CLICommand ISREADY
public static final CLICommand GETALLUSERIDS
public static final CLICommand GETALLITEMIDS
public static final CLICommand GETNUMUSERCLUSTERS
public static final CLICommand GETNUMITEMCLUSTERS
public static final CLICommand GETUSERCLUSTER
public static final CLICommand GETITEMCLUSTER
public static CLICommand[] values()
for (CLICommand c : CLICommand.values()) System.out.println(c);
public static CLICommand 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 nullCopyright © 2012-2013. All Rights Reserved.