Enum GeonetworkRequestFilterParameters.VISIBILITY
- java.lang.Object
-
- java.lang.Enum<GeonetworkRequestFilterParameters.VISIBILITY>
-
- org.gcube.datatransfer.resolver.gis.geonetwork.GeonetworkRequestFilterParameters.VISIBILITY
-
- All Implemented Interfaces:
Serializable,Comparable<GeonetworkRequestFilterParameters.VISIBILITY>
- Enclosing interface:
- GeonetworkRequestFilterParameters
public static enum GeonetworkRequestFilterParameters.VISIBILITY extends Enum<GeonetworkRequestFilterParameters.VISIBILITY>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeonetworkRequestFilterParameters.VISIBILITYvalueOf(String name)Returns the enum constant of this type with the specified name.static GeonetworkRequestFilterParameters.VISIBILITY[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUB
public static final GeonetworkRequestFilterParameters.VISIBILITY PUB
-
PRV
public static final GeonetworkRequestFilterParameters.VISIBILITY PRV
-
-
Method Detail
-
values
public static GeonetworkRequestFilterParameters.VISIBILITY[] 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 (GeonetworkRequestFilterParameters.VISIBILITY c : GeonetworkRequestFilterParameters.VISIBILITY.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeonetworkRequestFilterParameters.VISIBILITY 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
-
-