com.sage.accpac.sm
Enum View.SystemAccess

java.lang.Object
  extended by java.lang.Enum<View.SystemAccess>
      extended by com.sage.accpac.sm.View.SystemAccess
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<View.SystemAccess>
Enclosing class:
View

public static enum View.SystemAccess
extends java.lang.Enum<View.SystemAccess>

Indicates the current access mode of a view

See Also:
View.getSystemAccess(), View.setSystemAccess(com.sage.accpac.sm.View.SystemAccess)

Enum Constant Summary
Activation
          View is being accessed by an activation program
Conversion
          View is being accessed by a conversion program
Export
          View is in export mode
Import
          View is in import mode
IntegrityCheck
          View is being accessed by an integrity checking process
Macro
          View is being accessed by a macro
Normal
          Normal view access
Posting
          View is performing a posting
 
Method Summary
static View.SystemAccess valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static View.SystemAccess[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Normal

public static final View.SystemAccess Normal
Normal view access


Import

public static final View.SystemAccess Import
View is in import mode


Export

public static final View.SystemAccess Export
View is in export mode


IntegrityCheck

public static final View.SystemAccess IntegrityCheck
View is being accessed by an integrity checking process


Macro

public static final View.SystemAccess Macro
View is being accessed by a macro


Activation

public static final View.SystemAccess Activation
View is being accessed by an activation program


Conversion

public static final View.SystemAccess Conversion
View is being accessed by a conversion program


Posting

public static final View.SystemAccess Posting
View is performing a posting

Method Detail

values

public static View.SystemAccess[] values()
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 (View.SystemAccess c : View.SystemAccess.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static View.SystemAccess 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
java.lang.NullPointerException - if the argument is null


Copyright © 2011 Sage Software, Inc. All rights reserved.