Package uk.ac.starlink.topcat
Enum Class ResourceType
- All Implemented Interfaces:
Serializable
,Comparable<ResourceType>
,Constable
Defines different kinds of resources that can be at the end of a URL.
This is used for the purposes of deciding what actions to invoke on it,
for instance in the context of DataLink.
- Since:
- 6 Feb 2018
- Author:
- Mark Taylor
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDataLink {links}-response table.FITS file to be interpreted as 2D image data.Graphical image, typically not FITS (PNG, JPEG etc).Some kind of spectrum.Table.Unknown resource type.Something that can be displayed in a web browser, for instance HTML. -
Method Summary
Modifier and TypeMethodDescriptionstatic ResourceType
guessResourceType
(ResourceInfo resInfo) Attempts to determine the type of resource characterised by available information.static ResourceType
Returns the enum constant of this class with the specified name.static ResourceType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TABLE
Table. -
DATALINK
DataLink {links}-response table. -
FITS_IMAGE
FITS file to be interpreted as 2D image data. -
SPECTRUM
Some kind of spectrum. -
IMAGE
Graphical image, typically not FITS (PNG, JPEG etc). -
WEB
Something that can be displayed in a web browser, for instance HTML. -
UNKNOWN
Unknown resource type.
-
-
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
-
guessResourceType
Attempts to determine the type of resource characterised by available information. Works on a best-efforts basis.- Parameters:
resInfo
- resource information- Returns:
- best guess at the type of resource corresponding to the given information
-