|
| 1 | +// Copyright 2022 Google LLC |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +package com.google.firebase.firestore; |
| 16 | + |
| 17 | +import android.app.Activity; |
| 18 | +import androidx.annotation.NonNull; |
| 19 | +import com.google.android.gms.tasks.Task; |
| 20 | +import java.util.concurrent.Executor; |
| 21 | + |
| 22 | +public class AggregateQuery { |
| 23 | + |
| 24 | + AggregateQuery() {} |
| 25 | + |
| 26 | + @NonNull |
| 27 | + public Query getQuery() { |
| 28 | + throw new RuntimeException("not implemented"); |
| 29 | + } |
| 30 | + |
| 31 | + @NonNull |
| 32 | + public Task<AggregateQuerySnapshot> get() { |
| 33 | + throw new RuntimeException("not implemented"); |
| 34 | + } |
| 35 | + |
| 36 | + @NonNull |
| 37 | + public Task<AggregateQuerySnapshot> get(@NonNull Source source) { |
| 38 | + throw new RuntimeException("not implemented"); |
| 39 | + } |
| 40 | + |
| 41 | + @NonNull |
| 42 | + public ListenerRegistration addSnapshotListener( |
| 43 | + @NonNull EventListener<AggregateQuerySnapshot> listener) { |
| 44 | + throw new RuntimeException("not implemented"); |
| 45 | + } |
| 46 | + |
| 47 | + @NonNull |
| 48 | + public ListenerRegistration addSnapshotListener( |
| 49 | + @NonNull Executor executor, @NonNull EventListener<AggregateQuerySnapshot> listener) { |
| 50 | + throw new RuntimeException("not implemented"); |
| 51 | + } |
| 52 | + |
| 53 | + @NonNull |
| 54 | + public ListenerRegistration addSnapshotListener( |
| 55 | + @NonNull Activity activity, @NonNull EventListener<AggregateQuerySnapshot> listener) { |
| 56 | + throw new RuntimeException("not implemented"); |
| 57 | + } |
| 58 | + |
| 59 | + @NonNull |
| 60 | + public ListenerRegistration addSnapshotListener( |
| 61 | + @NonNull MetadataChanges metadataChanges, |
| 62 | + @NonNull EventListener<AggregateQuerySnapshot> listener) { |
| 63 | + throw new RuntimeException("not implemented"); |
| 64 | + } |
| 65 | + |
| 66 | + @NonNull |
| 67 | + public ListenerRegistration addSnapshotListener( |
| 68 | + @NonNull Executor executor, |
| 69 | + @NonNull MetadataChanges metadataChanges, |
| 70 | + @NonNull EventListener<AggregateQuerySnapshot> listener) { |
| 71 | + throw new RuntimeException("not implemented"); |
| 72 | + } |
| 73 | + |
| 74 | + @NonNull |
| 75 | + public ListenerRegistration addSnapshotListener( |
| 76 | + @NonNull Activity activity, |
| 77 | + @NonNull MetadataChanges metadataChanges, |
| 78 | + @NonNull EventListener<AggregateQuerySnapshot> listener) { |
| 79 | + throw new RuntimeException("not implemented"); |
| 80 | + } |
| 81 | + |
| 82 | + @Override |
| 83 | + public int hashCode() { |
| 84 | + throw new RuntimeException("not implemented"); |
| 85 | + } |
| 86 | + |
| 87 | + @Override |
| 88 | + public boolean equals(Object obj) { |
| 89 | + throw new RuntimeException("not implemented"); |
| 90 | + } |
| 91 | +} |
0 commit comments