org.jetbrains.jet.descriptors.serialization
Enum ProtoBuf.Callable.MemberKind

java.lang.Object
  extended by java.lang.Enum<ProtoBuf.Callable.MemberKind>
      extended by org.jetbrains.jet.descriptors.serialization.ProtoBuf.Callable.MemberKind
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, java.io.Serializable, java.lang.Comparable<ProtoBuf.Callable.MemberKind>
Enclosing class:
ProtoBuf.Callable

public static enum ProtoBuf.Callable.MemberKind
extends java.lang.Enum<ProtoBuf.Callable.MemberKind>
implements com.google.protobuf.Internal.EnumLite

Protobuf enum org.jetbrains.jet.descriptors.serialization.Callable.MemberKind


Enum Constant Summary
DECLARATION
          DECLARATION = 0;
DELEGATION
          DELEGATION = 2;
FAKE_OVERRIDE
          FAKE_OVERRIDE = 1;
SYNTHESIZED
          SYNTHESIZED = 3;
 
Field Summary
static int DECLARATION_VALUE
          DECLARATION = 0;
static int DELEGATION_VALUE
          DELEGATION = 2;
static int FAKE_OVERRIDE_VALUE
          FAKE_OVERRIDE = 1;
static int SYNTHESIZED_VALUE
          SYNTHESIZED = 3;
 
Method Summary
 int getNumber()
           
static com.google.protobuf.Internal.EnumLiteMap<ProtoBuf.Callable.MemberKind> internalGetValueMap()
           
static ProtoBuf.Callable.MemberKind valueOf(int value)
           
static ProtoBuf.Callable.MemberKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProtoBuf.Callable.MemberKind[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DECLARATION

public static final ProtoBuf.Callable.MemberKind DECLARATION
DECLARATION = 0;
 2 bits
 


FAKE_OVERRIDE

public static final ProtoBuf.Callable.MemberKind FAKE_OVERRIDE
FAKE_OVERRIDE = 1;


DELEGATION

public static final ProtoBuf.Callable.MemberKind DELEGATION
DELEGATION = 2;


SYNTHESIZED

public static final ProtoBuf.Callable.MemberKind SYNTHESIZED
SYNTHESIZED = 3;

Field Detail

DECLARATION_VALUE

public static final int DECLARATION_VALUE
DECLARATION = 0;
 2 bits
 

See Also:
Constant Field Values

FAKE_OVERRIDE_VALUE

public static final int FAKE_OVERRIDE_VALUE
FAKE_OVERRIDE = 1;

See Also:
Constant Field Values

DELEGATION_VALUE

public static final int DELEGATION_VALUE
DELEGATION = 2;

See Also:
Constant Field Values

SYNTHESIZED_VALUE

public static final int SYNTHESIZED_VALUE
SYNTHESIZED = 3;

See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

public static ProtoBuf.Callable.MemberKind 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

getNumber

public final int getNumber()
Specified by:
getNumber in interface com.google.protobuf.Internal.EnumLite

valueOf

public static ProtoBuf.Callable.MemberKind valueOf(int value)

internalGetValueMap

public static com.google.protobuf.Internal.EnumLiteMap<ProtoBuf.Callable.MemberKind> internalGetValueMap()