com.esri.core.portal
Enum PortalRelationshipDirection

java.lang.Object
  extended by java.lang.Enum<PortalRelationshipDirection>
      extended by com.esri.core.portal.PortalRelationshipDirection
All Implemented Interfaces:
Serializable, Comparable<PortalRelationshipDirection>

public enum PortalRelationshipDirection
extends Enum<PortalRelationshipDirection>

The direction of the item relationship. Either 'forward' (from origin -> destination) or 'reverse' (from destination -> origin).


Enum Constant Summary
FORWARD
          From origin -> destination
REVERSE
          From destination -> origin
 
Method Summary
 String toString()
          Returns a human readable string representing the relationship direction.
static PortalRelationshipDirection valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PortalRelationshipDirection[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FORWARD

public static final PortalRelationshipDirection FORWARD
From origin -> destination


REVERSE

public static final PortalRelationshipDirection REVERSE
From destination -> origin

Method Detail

values

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

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

valueOf

public static PortalRelationshipDirection valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Returns a human readable string representing the relationship direction.

Overrides:
toString in class Enum<PortalRelationshipDirection>
Returns:
A human readable string representing the relationship direction


Copyright © 2012. All Rights Reserved.