org.jetbrains.kotlin.serialization
Enum ProtoBuf.Visibility

java.lang.Object
  extended by java.lang.Enum<ProtoBuf.Visibility>
      extended by org.jetbrains.kotlin.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

Protobuf enum org.jetbrains.kotlin.serialization.Visibility


Enum Constant Summary
INTERNAL
          INTERNAL = 0;
LOCAL
          LOCAL = 5;
PRIVATE
          PRIVATE = 1;
PRIVATE_TO_THIS
          PRIVATE_TO_THIS = 4;
PROTECTED
          PROTECTED = 2;
PUBLIC
          PUBLIC = 3;
 
Field Summary
static int INTERNAL_VALUE
          INTERNAL = 0;
static int LOCAL_VALUE
          LOCAL = 5;
static int PRIVATE_TO_THIS_VALUE
          PRIVATE_TO_THIS = 4;
static int PRIVATE_VALUE
          PRIVATE = 1;
static int PROTECTED_VALUE
          PROTECTED = 2;
static int PUBLIC_VALUE
          PUBLIC = 3;
 
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
INTERNAL = 0;
 3 bits
 


PRIVATE

public static final ProtoBuf.Visibility PRIVATE
PRIVATE = 1;


PROTECTED

public static final ProtoBuf.Visibility PROTECTED
PROTECTED = 2;


PUBLIC

public static final ProtoBuf.Visibility PUBLIC
PUBLIC = 3;


PRIVATE_TO_THIS

public static final ProtoBuf.Visibility PRIVATE_TO_THIS
PRIVATE_TO_THIS = 4;


LOCAL

public static final ProtoBuf.Visibility LOCAL
LOCAL = 5;

Field Detail

INTERNAL_VALUE

public static final int INTERNAL_VALUE
INTERNAL = 0;
 3 bits
 

See Also:
Constant Field Values

PRIVATE_VALUE

public static final int PRIVATE_VALUE
PRIVATE = 1;

See Also:
Constant Field Values

PROTECTED_VALUE

public static final int PROTECTED_VALUE
PROTECTED = 2;

See Also:
Constant Field Values

PUBLIC_VALUE

public static final int PUBLIC_VALUE
PUBLIC = 3;

See Also:
Constant Field Values

PRIVATE_TO_THIS_VALUE

public static final int PRIVATE_TO_THIS_VALUE
PRIVATE_TO_THIS = 4;

See Also:
Constant Field Values

LOCAL_VALUE

public static final int LOCAL_VALUE
LOCAL = 5;

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()