Package com.microstrategy.webapi
Enum ViewMedia
- java.lang.Object
-
- java.lang.Enum<ViewMedia>
-
- com.microstrategy.webapi.ViewMedia
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ViewMedia>
public enum ViewMedia extends java.lang.Enum<ViewMedia>
View Media contains 32 bits. The first 5 bits of view media represents the default mode of a RSD or dossier. The following 27 bits of view media represents the available modes of a RSD or dossier.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLE_CUSTOM_SQL
AVAILABLE_EXPORT_CSV
AVAILABLE_EXPORT_EXCEL
AVAILABLE_EXPORT_EXCEL_PLAIN_TEXT
AVAILABLE_EXPORT_FLASH
AVAILABLE_EXPORT_HTML
AVAILABLE_EXPORT_MSTR
AVAILABLE_EXPORT_PDF
AVAILABLE_EXPORT_PLAIN_TEXT
AVAILABLE_MEDIA_MASK
AVAILABLE_PRIVATE
AVAILABLE_SERVE_AS_MODEL
AVAILABLE_VIEW_ANALYSIS
AVAILABLE_VIEW_ANALYSIS_HTML5
AVAILABLE_VIEW_EDITABLE
AVAILABLE_VIEW_FLASH
AVAILABLE_VIEW_INTERACTIVE
AVAILABLE_VIEW_STATIC
For available view media--bit vector using last 27 bitsDEFAULT_MASK
EXPORT_CSV
EXPORT_EXCEL
EXPORT_EXCEL_PLAIN_TEXT
EXPORT_FLASH
EXPORT_HTML
EXPORT_MSTR
EXPORT_PDF
EXPORT_PLAIN_TEXT
RESERVED
Enumeration reserved for future useVIEW_ANALYSIS
VIEW_ANALYSIS_HTML5
VIEW_EDITABLE
VIEW_FLASH
VIEW_INTERACTIVE
VIEW_STATIC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ViewMedia
getEnumConstantByValue(int value)
int
getValue()
static ViewMedia
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ViewMedia[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVAILABLE_VIEW_STATIC
public static final ViewMedia AVAILABLE_VIEW_STATIC
For available view media--bit vector using last 27 bits
-
AVAILABLE_VIEW_INTERACTIVE
public static final ViewMedia AVAILABLE_VIEW_INTERACTIVE
-
AVAILABLE_VIEW_EDITABLE
public static final ViewMedia AVAILABLE_VIEW_EDITABLE
-
AVAILABLE_VIEW_FLASH
public static final ViewMedia AVAILABLE_VIEW_FLASH
-
AVAILABLE_EXPORT_EXCEL
public static final ViewMedia AVAILABLE_EXPORT_EXCEL
-
AVAILABLE_EXPORT_PDF
public static final ViewMedia AVAILABLE_EXPORT_PDF
-
AVAILABLE_EXPORT_HTML
public static final ViewMedia AVAILABLE_EXPORT_HTML
-
AVAILABLE_EXPORT_FLASH
public static final ViewMedia AVAILABLE_EXPORT_FLASH
-
AVAILABLE_EXPORT_EXCEL_PLAIN_TEXT
public static final ViewMedia AVAILABLE_EXPORT_EXCEL_PLAIN_TEXT
-
AVAILABLE_EXPORT_CSV
public static final ViewMedia AVAILABLE_EXPORT_CSV
-
AVAILABLE_EXPORT_PLAIN_TEXT
public static final ViewMedia AVAILABLE_EXPORT_PLAIN_TEXT
-
AVAILABLE_VIEW_ANALYSIS
public static final ViewMedia AVAILABLE_VIEW_ANALYSIS
-
AVAILABLE_CUSTOM_SQL
public static final ViewMedia AVAILABLE_CUSTOM_SQL
-
AVAILABLE_VIEW_ANALYSIS_HTML5
public static final ViewMedia AVAILABLE_VIEW_ANALYSIS_HTML5
-
AVAILABLE_EXPORT_MSTR
public static final ViewMedia AVAILABLE_EXPORT_MSTR
-
AVAILABLE_PRIVATE
public static final ViewMedia AVAILABLE_PRIVATE
-
AVAILABLE_SERVE_AS_MODEL
public static final ViewMedia AVAILABLE_SERVE_AS_MODEL
-
AVAILABLE_MEDIA_MASK
public static final ViewMedia AVAILABLE_MEDIA_MASK
-
RESERVED
public static final ViewMedia RESERVED
Enumeration reserved for future use
-
VIEW_STATIC
public static final ViewMedia VIEW_STATIC
-
VIEW_INTERACTIVE
public static final ViewMedia VIEW_INTERACTIVE
-
VIEW_EDITABLE
public static final ViewMedia VIEW_EDITABLE
-
VIEW_FLASH
public static final ViewMedia VIEW_FLASH
-
EXPORT_EXCEL
public static final ViewMedia EXPORT_EXCEL
-
EXPORT_PDF
public static final ViewMedia EXPORT_PDF
-
EXPORT_HTML
public static final ViewMedia EXPORT_HTML
-
EXPORT_FLASH
public static final ViewMedia EXPORT_FLASH
-
EXPORT_EXCEL_PLAIN_TEXT
public static final ViewMedia EXPORT_EXCEL_PLAIN_TEXT
-
EXPORT_CSV
public static final ViewMedia EXPORT_CSV
-
EXPORT_PLAIN_TEXT
public static final ViewMedia EXPORT_PLAIN_TEXT
-
VIEW_ANALYSIS
public static final ViewMedia VIEW_ANALYSIS
-
VIEW_ANALYSIS_HTML5
public static final ViewMedia VIEW_ANALYSIS_HTML5
-
EXPORT_MSTR
public static final ViewMedia EXPORT_MSTR
-
DEFAULT_MASK
public static final ViewMedia DEFAULT_MASK
-
-
Method Detail
-
values
public static ViewMedia[] 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 (ViewMedia c : ViewMedia.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ViewMedia valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public int getValue()
-
getEnumConstantByValue
public static ViewMedia getEnumConstantByValue(int value)
-
-