public static enum ASTCatalog.CatalogSortField extends java.lang.Enum<ASTCatalog.CatalogSortField>
Enum Constant and Description |
---|
CONST_AND_OBJNAME
by constellation name and then by object names
|
CONSTELLATION
by constellation name
|
DECL
by an object's Declination
|
OBJ_ALTNAME
by an an object's alternate name
|
OBJNAME
by object name
|
RA
by an object's Right Ascension
|
VISUAL_MAGNITUDE
by an object's visual magnitude
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toStr()
Gets a printable string for an enumerated type item
|
static ASTCatalog.CatalogSortField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ASTCatalog.CatalogSortField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTCatalog.CatalogSortField CONSTELLATION
public static final ASTCatalog.CatalogSortField CONST_AND_OBJNAME
public static final ASTCatalog.CatalogSortField OBJNAME
public static final ASTCatalog.CatalogSortField OBJ_ALTNAME
public static final ASTCatalog.CatalogSortField RA
public static final ASTCatalog.CatalogSortField DECL
public static final ASTCatalog.CatalogSortField VISUAL_MAGNITUDE
public static ASTCatalog.CatalogSortField[] values()
for (ASTCatalog.CatalogSortField c : ASTCatalog.CatalogSortField.values()) System.out.println(c);
public static ASTCatalog.CatalogSortField valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toStr()