Package org.apache.naming
Class NamingEntry
- java.lang.Object
-
- org.apache.naming.NamingEntry
-
public class NamingEntry extends java.lang.Object
Represents a binding in a NamingContext.- Author:
- Remy Maucherat
-
-
Constructor Summary
Constructors Constructor Description NamingEntry(java.lang.String name, java.lang.Object value, int type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
int
hashCode()
-
-
-
Field Detail
-
ENTRY
public static final int ENTRY
- See Also:
- Constant Field Values
-
LINK_REF
public static final int LINK_REF
- See Also:
- Constant Field Values
-
REFERENCE
public static final int REFERENCE
- See Also:
- Constant Field Values
-
CONTEXT
public static final int CONTEXT
- See Also:
- Constant Field Values
-
type
public int type
The type instance variable is used to avoid using RTTI when doing lookups.
-
name
public final java.lang.String name
-
value
public java.lang.Object value
-
-