Searched defs:SliceSpec (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/slices/core/src/main/java/androidx/slice/
H A DSliceSpec.java30 * SliceSpec has the same type and an equal or lesser revision,
35 * {@link SliceSpec} that one of the supported {@link SliceSpec}s provided
43 public class SliceSpec { class
48 public SliceSpec(@NonNull String type, int revision) { method in class:SliceSpec
77 public boolean canRender(@NonNull SliceSpec candidate) {
84 if (!(obj instanceof SliceSpec)) return false;
85 SliceSpec other = (SliceSpec) obj;
96 return String.format("SliceSpec{
[all...]
/frameworks/base/core/java/android/app/slice/
H A DSliceSpec.java30 * SliceSpec has the same type and an equal or lesser revision,
35 * {@link SliceSpec} that one of the supported {@link SliceSpec}s provided
41 public final class SliceSpec implements Parcelable { class in inherits:Parcelable
46 public SliceSpec(@NonNull String type, int revision) { method in class:SliceSpec
54 public SliceSpec(Parcel source) { method in class:SliceSpec
94 public boolean canRender(@NonNull SliceSpec candidate) {
101 if (!(obj instanceof SliceSpec)) return false;
102 SliceSpec other = (SliceSpec) ob
[all...]

Completed in 842 milliseconds