org.stellarium.ui.components 
 Enum StellariumComponent.S_GUI_VALUE
java.lang.Object
   java.lang.Enum<StellariumComponent.S_GUI_VALUE>
java.lang.Enum<StellariumComponent.S_GUI_VALUE>
       org.stellarium.ui.components.StellariumComponent.S_GUI_VALUE
org.stellarium.ui.components.StellariumComponent.S_GUI_VALUE
  - All Implemented Interfaces:
  
- java.io.Serializable, java.lang.Comparable<StellariumComponent.S_GUI_VALUE>
  
  - Enclosing class:
  
- StellariumComponent
  - 
    public static enum StellariumComponent.S_GUI_VALUE 
- extends java.lang.Enum<StellariumComponent.S_GUI_VALUE>
  GUI return values
  
  
 
 
  
    | Methods inherited from class java.lang.Enum | 
  
    | clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
 
  
    | Methods inherited from class java.lang.Object | 
  
    | finalize, getClass, notify, notifyAll, wait, wait, wait | 
 
  
  
  S_GUI_MOUSE_LEFT
public static final StellariumComponent.S_GUI_VALUE S_GUI_MOUSE_LEFT
  
  
  S_GUI_MOUSE_RIGHT
public static final StellariumComponent.S_GUI_VALUE S_GUI_MOUSE_RIGHT
  
  
  S_GUI_MOUSE_MIDDLE
public static final StellariumComponent.S_GUI_VALUE S_GUI_MOUSE_MIDDLE
  
  
  S_GUI_PRESSED
public static final StellariumComponent.S_GUI_VALUE S_GUI_PRESSED
  
  
  S_GUI_RELEASED
public static final StellariumComponent.S_GUI_VALUE S_GUI_RELEASED
  
  
  values
public static final StellariumComponent.S_GUI_VALUE[] values()
  - Returns an array containing the constants of this enum type, in the order they're declared. This method may be
    used to iterate over the constants as follows:
    
for(StellariumComponent.S_GUI_VALUE c : StellariumComponent.S_GUI_VALUE.values())
        System.out.println(c);
   
- 
    
      - Returns:
      
- an array containing the constants of this enum type, in the order they're declared
    
 
  valueOf
public static StellariumComponent.S_GUI_VALUE valueOf(java.lang.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:
      
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name