DocumentChange.Type | Doclava
public static final enum

DocumentChange.Type

extends Enum<DocumentChange.Type>
java.lang.Object
   ↳ java.lang.Enum<com.google.firebase.firestore.DocumentChange.Type>
     ↳ com.google.firebase.firestore.DocumentChange.Type

Class Overview

An enumeration of snapshot diff types.

Summary

Enum Values
DocumentChange.Type  ADDED  Indicates a new document was added to the set of documents matching the query. 
DocumentChange.Type  MODIFIED  Indicates a document within the query was modified. 
DocumentChange.Type  REMOVED  Indicates a document within the query was removed (either deleted or no longer matches the query. 
Public Methods
static DocumentChange.Type valueOf(String name)
static final 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 DocumentChange.Type ADDED

Indicates a new document was added to the set of documents matching the query.

public static final DocumentChange.Type MODIFIED

Indicates a document within the query was modified.

public static final DocumentChange.Type REMOVED

Indicates a document within the query was removed (either deleted or no longer matches the query.

Public Methods

public static DocumentChange.Type valueOf (String name)

Parameters
name String

Returns
DocumentChange.Type

public static final Type[] values ()

Returns
Type[]