|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PhotoSearch.Privacy>
org.jickr.PhotoSearch.Privacy
public static enum PhotoSearch.Privacy
Privacy value associated with an object on Flickr. Used to set search
conditions via PhotoSearch.setPrivacy(Privacy)
PhotoSearch.setPrivacy(Privacy)
Enum Constant Summary | |
---|---|
FAMILY
The object is visible only to people marked as family on Flickr. |
|
FRIENDS
The object is visible only to people marked as a friend on Flickr. |
|
FRIENDSANDFAMILY
The object is visible only to people marked either a friend or family on Flickr. |
|
PRIVATE
The object is visible only to the authenticated user, it is completely private. |
|
PUBLIC
The object is visible to everyone. |
Method Summary | |
---|---|
static PhotoSearch.Privacy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PhotoSearch.Privacy[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PhotoSearch.Privacy PUBLIC
public static final PhotoSearch.Privacy FRIENDS
public static final PhotoSearch.Privacy FAMILY
public static final PhotoSearch.Privacy FRIENDSANDFAMILY
public static final PhotoSearch.Privacy PRIVATE
Method Detail |
---|
public static final PhotoSearch.Privacy[] values()
for(PhotoSearch.Privacy c : PhotoSearch.Privacy.values()) System.out.println(c);
public static PhotoSearch.Privacy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |