public static final enum

BindingEdge.Type

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.inject.grapher.BindingEdge.Type

Class Overview

Classification for what kind of binding this edge represents.

Summary

Enum Values
BindingEdge.Type  CONVERTED_CONSTANT  Binding is to the interface for a constant of a different type. 
BindingEdge.Type  NORMAL  Binding is to an instance or class of the binding's same type. 
BindingEdge.Type  PROVIDER  Binding is to an instance or class that provides the binding's type. 
Public Methods
static BindingEdge.Type valueOf(String name)
final static Type[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final BindingEdge.Type CONVERTED_CONSTANT

Since: API Level

Binding is to the interface for a constant of a different type.

public static final BindingEdge.Type NORMAL

Since: API Level

Binding is to an instance or class of the binding's same type.

public static final BindingEdge.Type PROVIDER

Since: API Level

Binding is to an instance or class that provides the binding's type.

Public Methods

public static BindingEdge.Type valueOf (String name)

public static final Type[] values ()