public static final enum

StatefulJsonWriter.WritingContext

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.rest.util.StatefulJsonWriter.WritingContext

Summary

Enum Values
StatefulJsonWriter.WritingContext  ARRAY  Indiciates the writer is in the process of writing an array  
StatefulJsonWriter.WritingContext  NAME  Indiciates the writer is in the process of writing an object property, having written the name but not the value already  
StatefulJsonWriter.WritingContext  OBJECT  Indiciates the writer is in the process of writing an object and any properties written thus far have been fully written (name and value)  
StatefulJsonWriter.WritingContext  ROOT  Indiciates the writer has written a top-level value or is ready to write a top-level value  
Public Methods
static StatefulJsonWriter.WritingContext valueOf(String name)
final static WritingContext[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final StatefulJsonWriter.WritingContext ARRAY

Indiciates the writer is in the process of writing an array

public static final StatefulJsonWriter.WritingContext NAME

Indiciates the writer is in the process of writing an object property, having written the name but not the value already

public static final StatefulJsonWriter.WritingContext OBJECT

Indiciates the writer is in the process of writing an object and any properties written thus far have been fully written (name and value)

public static final StatefulJsonWriter.WritingContext ROOT

Indiciates the writer has written a top-level value or is ready to write a top-level value

Public Methods

public static StatefulJsonWriter.WritingContext valueOf (String name)

public static final WritingContext[] values ()