public static final enum

Desktop.Action

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ java.awt.Desktop.Action

Class Overview

Represents an action type. Each platform supports a different set of actions. You may use the isSupported(Desktop.Action) method to determine if the given action is supported by the current platform.

Summary

Enum Values
Desktop.Action  BROWSE  Represents a "browse" action. 
Desktop.Action  EDIT  Represents an "edit" action. 
Desktop.Action  MAIL  Represents a "mail" action. 
Desktop.Action  OPEN  Represents an "open" action. 
Desktop.Action  PRINT  Represents a "print" action. 
Public Methods
static Desktop.Action valueOf(String name)
final static Action[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Desktop.Action BROWSE

Represents a "browse" action.

public static final Desktop.Action EDIT

Represents an "edit" action.

public static final Desktop.Action MAIL

Represents a "mail" action.

public static final Desktop.Action OPEN

Represents an "open" action.

public static final Desktop.Action PRINT

Represents a "print" action.

Public Methods

public static Desktop.Action valueOf (String name)

public static final Action[] values ()