com.anasoft.os.daofusion.criteria
Enum NestedPropertyJoinType

java.lang.Object
  extended by java.lang.Enum<NestedPropertyJoinType>
      extended by com.anasoft.os.daofusion.criteria.NestedPropertyJoinType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NestedPropertyJoinType>

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

Enumeration of possible database join types applicable to AssociationPathElement instances.

Author:
vojtech.szocs
See Also:
AssociationPathElement, NestedPropertyCriterion

Enum Constant Summary
DEFAULT
           
FULL_JOIN
           
INNER_JOIN
           
LEFT_JOIN
           
 
Method Summary
 int getHibernateJoinType()
           
static NestedPropertyJoinType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NestedPropertyJoinType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DEFAULT

public static final NestedPropertyJoinType DEFAULT

INNER_JOIN

public static final NestedPropertyJoinType INNER_JOIN

FULL_JOIN

public static final NestedPropertyJoinType FULL_JOIN

LEFT_JOIN

public static final NestedPropertyJoinType LEFT_JOIN
Method Detail

values

public static final NestedPropertyJoinType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(NestedPropertyJoinType c : NestedPropertyJoinType.values())
        System.out.println(c);

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

valueOf

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

getHibernateJoinType

public int getHibernateJoinType()


Copyright © 2008-2009 ANASOFT and contributors. All Rights Reserved.