Package org.azd.enums
Enum Class FeedVisibility
- All Implemented Interfaces:
Serializable
,Comparable<FeedVisibility>
,Constable
Visibility status of the view.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFeed is accessible by all the valid users present in the Azure Active Directory tenant.Feed is accessible by all the valid users present in the organization where the feed resides (for example across organization 'myorg' at 'dev.azure.com/myorg')Feed is accessible by all the valid users present in the enterprise where the feed resides.Only accessible by the permissions explicitly set by the feed administrator. -
Method Summary
Modifier and TypeMethodDescriptionstatic FeedVisibility
Returns the enum constant of this class with the specified name.static FeedVisibility[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AADTENANT
Feed is accessible by all the valid users present in the Azure Active Directory tenant. -
COLLECTION
Feed is accessible by all the valid users present in the organization where the feed resides (for example across organization 'myorg' at 'dev.azure.com/myorg') -
ORGANIZATION
Feed is accessible by all the valid users present in the enterprise where the feed resides. Note that legacy naming and back compat leaves the name of this value out of sync with its new meaning. -
PRIVATE
Only accessible by the permissions explicitly set by the feed administrator.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-