what-the-bank/sources/com/google/android/gms/vision/text/Text.java

17 lines
314 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.android.gms.vision.text;
import android.graphics.Point;
import android.graphics.Rect;
import java.util.List;
/* loaded from: classes2.dex */
public interface Text {
Rect getBoundingBox();
List<? extends Text> getComponents();
Point[] getCornerPoints();
String getValue();
}