Package com.openkm.sdk4j.bean
Enum ThumbnailType
- java.lang.Object
-
- java.lang.Enum<ThumbnailType>
-
- com.openkm.sdk4j.bean.ThumbnailType
-
- All Implemented Interfaces:
Serializable,Comparable<ThumbnailType>
public enum ThumbnailType extends Enum<ThumbnailType>
ThumbnailType- Author:
- jllort
-
-
Enum Constant Summary
Enum Constants Enum Constant Description THUMBNAIL_LIGHTBOXTHUMBNAIL_PROPERTIESTHUMBNAIL_SEARCH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ThumbnailTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ThumbnailType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THUMBNAIL_PROPERTIES
public static final ThumbnailType THUMBNAIL_PROPERTIES
-
THUMBNAIL_SEARCH
public static final ThumbnailType THUMBNAIL_SEARCH
-
THUMBNAIL_LIGHTBOX
public static final ThumbnailType THUMBNAIL_LIGHTBOX
-
-
Method Detail
-
values
public static ThumbnailType[] 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 (ThumbnailType c : ThumbnailType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThumbnailType 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 nameNullPointerException- if the argument is null
-
-