com.sap.sl.sdk.authoring.businesslayer
Enum NavigationPathMode

java.lang.Object
  extended by java.lang.Enum<NavigationPathMode>
      extended by com.sap.sl.sdk.authoring.businesslayer.NavigationPathMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NavigationPathMode>

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

A representation of the literals of the enumeration 'Navigation Path Mode', and utility methods for working with them.

See Also:
com.sap.sl.sdk.authoring.businesslayer.internal.emf.impl.BusinessLayerPackageImpl#getNavigationPathMode()

Enum Constant Summary
CUSTOM
          The 'Custom' literal object.
DEFAULT
          The 'Default' literal object.
 
Field Summary
static int CUSTOM_VALUE
          The 'Custom' literal value.
static int DEFAULT_VALUE
          The 'Default' literal value.
static java.util.List<NavigationPathMode> VALUES
          A public read-only list of all the 'Navigation Path Mode' enumerators.
 
Method Summary
static NavigationPathMode get(int value)
          Returns the 'Navigation Path Mode' literal with the specified integer value.
static NavigationPathMode get(java.lang.String literal)
          Returns the 'Navigation Path Mode' literal with the specified literal value.
static NavigationPathMode getByName(java.lang.String name)
          Returns the 'Navigation Path Mode' literal with the specified name.
 java.lang.String getLiteral()
           
 java.lang.String getName()
           
 int getValue()
           
 java.lang.String toString()
          Returns the literal value of the enumerator, which is its string representation.
static NavigationPathMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NavigationPathMode[] 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

DEFAULT

public static final NavigationPathMode DEFAULT
The 'Default' literal object.

See Also:
DEFAULT_VALUE

CUSTOM

public static final NavigationPathMode CUSTOM
The 'Custom' literal object.

See Also:
CUSTOM_VALUE
Field Detail

DEFAULT_VALUE

public static final int DEFAULT_VALUE
The 'Default' literal value.

If the meaning of 'Default' literal object isn't clear, there really should be more of a description here...

See Also:
DEFAULT, Constant Field Values

CUSTOM_VALUE

public static final int CUSTOM_VALUE
The 'Custom' literal value.

If the meaning of 'Custom' literal object isn't clear, there really should be more of a description here...

See Also:
CUSTOM, Constant Field Values

VALUES

public static final java.util.List<NavigationPathMode> VALUES
A public read-only list of all the 'Navigation Path Mode' enumerators.

Method Detail

values

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

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

valueOf

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

get

public static NavigationPathMode get(java.lang.String literal)
Returns the 'Navigation Path Mode' literal with the specified literal value.


getByName

public static NavigationPathMode getByName(java.lang.String name)
Returns the 'Navigation Path Mode' literal with the specified name.


get

public static NavigationPathMode get(int value)
Returns the 'Navigation Path Mode' literal with the specified integer value.


getValue

public int getValue()


getName

public java.lang.String getName()


getLiteral

public java.lang.String getLiteral()


toString

public java.lang.String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<NavigationPathMode>


© Copyright 2016 SAP SE or an SAP affiliate company. All rights reserved.