Package org.openmetadata.service.jdbi3
Enum FeedRepository.FilterType
- java.lang.Object
-
- java.lang.Enum<FeedRepository.FilterType>
-
- org.openmetadata.service.jdbi3.FeedRepository.FilterType
-
- All Implemented Interfaces:
Serializable,Comparable<FeedRepository.FilterType>
- Enclosing class:
- FeedRepository
public static enum FeedRepository.FilterType extends Enum<FeedRepository.FilterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNED_BYASSIGNED_TOFOLLOWSMENTIONSOWNER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeedRepository.FilterTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FeedRepository.FilterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OWNER
public static final FeedRepository.FilterType OWNER
-
MENTIONS
public static final FeedRepository.FilterType MENTIONS
-
FOLLOWS
public static final FeedRepository.FilterType FOLLOWS
-
ASSIGNED_TO
public static final FeedRepository.FilterType ASSIGNED_TO
-
ASSIGNED_BY
public static final FeedRepository.FilterType ASSIGNED_BY
-
-
Method Detail
-
values
public static FeedRepository.FilterType[] 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 (FeedRepository.FilterType c : FeedRepository.FilterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeedRepository.FilterType 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
-
-