Package it.geosolutions.geoserver.rest
Enum GeoServerRESTPublisher.DataStoreType
- java.lang.Object
-
- java.lang.Enum<GeoServerRESTPublisher.DataStoreType>
-
- it.geosolutions.geoserver.rest.GeoServerRESTPublisher.DataStoreType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GeoServerRESTPublisher.DataStoreType>
- Enclosing class:
- GeoServerRESTPublisher
public static enum GeoServerRESTPublisher.DataStoreType extends java.lang.Enum<GeoServerRESTPublisher.DataStoreType>
Deprecated.- Author:
- cancellieri
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COVERAGESTORESDeprecated.Raster based data sources.DATASTORESDeprecated.Vector based data sources.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.lang.StringgetTypeName(GeoServerRESTPublisher.StoreType type)java.lang.StringtoString()Deprecated.static GeoServerRESTPublisher.DataStoreTypevalueOf(java.lang.String name)Deprecated.Returns the enum constant of this type with the specified name.static GeoServerRESTPublisher.DataStoreType[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COVERAGESTORES
public static final GeoServerRESTPublisher.DataStoreType COVERAGESTORES
Deprecated.Raster based data sources.
-
DATASTORES
public static final GeoServerRESTPublisher.DataStoreType DATASTORES
Deprecated.Vector based data sources. Can be a file in the case of a Shapefile, a database connection in the case of PostGIS, or a server in the case of a remote Web Feature Service.
-
-
Method Detail
-
values
public static GeoServerRESTPublisher.DataStoreType[] values()
Deprecated.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 (GeoServerRESTPublisher.DataStoreType c : GeoServerRESTPublisher.DataStoreType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeoServerRESTPublisher.DataStoreType valueOf(java.lang.String name)
Deprecated.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
-
getTypeName
public static java.lang.String getTypeName(GeoServerRESTPublisher.StoreType type)
Deprecated.- Parameters:
type-- Returns:
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Enum<GeoServerRESTPublisher.DataStoreType>
-
-