flux.repository
Enum RepositoryElementType

java.lang.Object
  extended by java.lang.Enum<RepositoryElementType>
      extended by flux.repository.RepositoryElementType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RepositoryElementType>

public enum RepositoryElementType
extends java.lang.Enum<RepositoryElementType>

Lists the kinds of objects that reside in the repository.

Author:
Copyright 2014 Flux Corporation. All rights reserved.

Enum Constant Summary
AGENT_CONFIGURATION
          Indicates that a repository element is an agent configuration.
BUSINESS_INTERVAL
          Indicates that a repository element is a business interval.
ENGINE_CONFIGURATION
          Indicates that a repository element is an engine configuration.
FLOW_CHART
          Indicates that a repository element is a flow chart.
PGP_KEY_PAIR
          Indicates that a repository element is a PGP key pair.
 
Method Summary
static RepositoryElementType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RepositoryElementType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AGENT_CONFIGURATION

public static final RepositoryElementType AGENT_CONFIGURATION
Indicates that a repository element is an agent configuration.


BUSINESS_INTERVAL

public static final RepositoryElementType BUSINESS_INTERVAL
Indicates that a repository element is a business interval.


ENGINE_CONFIGURATION

public static final RepositoryElementType ENGINE_CONFIGURATION
Indicates that a repository element is an engine configuration.


FLOW_CHART

public static final RepositoryElementType FLOW_CHART
Indicates that a repository element is a flow chart.


PGP_KEY_PAIR

public static final RepositoryElementType PGP_KEY_PAIR
Indicates that a repository element is a PGP key pair.

Method Detail

values

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

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

valueOf

public static RepositoryElementType 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


© 2014 Flux Corporation. All rights reserved.