Package com.smartgwt.client.types
Enum NullAccessType
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<NullAccessType>
,Constable
The possible access types for records with a null
ownerIdField
(only applicable if ownerIdField
is specified)-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static NullAccessType
Returns the enum constant of this type with the specified name.static NullAccessType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
The default value, means that users have no access to records with a nullownerIdField
. In this case, users can only see their own records (ie, those where theownerIdField
matches the currently authenticaed user's id)If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none". -
VIEW
Users are allowed read-only access to records with a nullownerIdField
. In this case, users can see records with a null owner as well as their own records.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "view". -
EDIT
Users are allowed read, update and delete access to records with a nullownerIdField
. In this case, users can see and fully manage records with a null owner, as well as their own records.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "edit".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
-