org.jetbrains.jet.descriptors.serialization
Enum ProtoBuf.Visibility

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

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


Enum Constant Summary
EXTRA
           
INTERNAL
           
PRIVATE
           
PROTECTED
           
PUBLIC
           
 
Field Summary
static int EXTRA_VALUE
           
static int INTERNAL_VALUE
           
static int PRIVATE_VALUE
           
static int PROTECTED_VALUE
           
static int PUBLIC_VALUE
           
 
Method Summary
 int getNumber()
           
static com.google.protobuf.Internal.EnumLiteMap<ProtoBuf.Visibility> internalGetValueMap()
           
static ProtoBuf.Visibility valueOf(int value)
           
static ProtoBuf.Visibility valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProtoBuf.Visibility[] 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

INTERNAL

public static final ProtoBuf.Visibility INTERNAL

PRIVATE

public static final ProtoBuf.Visibility PRIVATE

PROTECTED

public static final ProtoBuf.Visibility PROTECTED

PUBLIC

public static final ProtoBuf.Visibility PUBLIC

EXTRA

public static final ProtoBuf.Visibility EXTRA
Field Detail

INTERNAL_VALUE

public static final int INTERNAL_VALUE
See Also:
Constant Field Values

PRIVATE_VALUE

public static final int PRIVATE_VALUE
See Also:
Constant Field Values

PROTECTED_VALUE

public static final int PROTECTED_VALUE
See Also:
Constant Field Values

PUBLIC_VALUE

public static final int PUBLIC_VALUE
See Also:
Constant Field Values

EXTRA_VALUE

public static final int EXTRA_VALUE
See Also:
Constant Field Values
Method Detail

values

public static ProtoBuf.Visibility[] 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.Visibility c : ProtoBuf.Visibility.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.Visibility 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.Visibility valueOf(int value)

internalGetValueMap

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