[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[[["\u003cp\u003e\u003ccode\u003eConfig.PlaneFindingMode\u003c/code\u003e is an enum that controls the behavior of the plane detection subsystem in ARCore.\u003c/p\u003e\n"],["\u003cp\u003eIt offers four modes: \u003ccode\u003eDISABLED\u003c/code\u003e, \u003ccode\u003eHORIZONTAL\u003c/code\u003e, \u003ccode\u003eHORIZONTAL_AND_VERTICAL\u003c/code\u003e, and \u003ccode\u003eVERTICAL\u003c/code\u003e, allowing developers to specify which types of planes to detect.\u003c/p\u003e\n"],["\u003cp\u003eThis enum inherits methods from \u003ccode\u003ejava.lang.Enum\u003c/code\u003e, \u003ccode\u003ejava.lang.Object\u003c/code\u003e, \u003ccode\u003ejava.lang.constant.Constable\u003c/code\u003e, and \u003ccode\u003ejava.lang.Comparable\u003c/code\u003e, providing functionalities like comparison and description.\u003c/p\u003e\n"],["\u003cp\u003eEach enum value corresponds to a specific plane detection mode, such as \u003ccode\u003eDISABLED\u003c/code\u003e for disabling plane detection or \u003ccode\u003eHORIZONTAL\u003c/code\u003e for detecting only horizontal planes.\u003c/p\u003e\n"]]],["`Config.PlaneFindingMode` controls plane detection behavior, offering four options: `DISABLED` (no detection), `HORIZONTAL` (detects horizontal planes), `VERTICAL` (detects vertical planes), and `HORIZONTAL_AND_VERTICAL` (detects both). It inherits methods from `Enum`, `Object`, `Constable`, and `Comparable` classes for operations like comparison, equality checks, getting the class, name, and ordinal. The main functionality centers around selecting plane detection behavior.\n"],null,["# Config.PlaneFindingMode\n\n`\npublic static final enum\n`**Config.PlaneFindingMode**`\n` \nSelect the behavior of the plane detection subsystem. \n\nInherited Methods\n-----------------\n\nFrom `class\njava.lang.Enum` \n\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` final `[Object](https://developer.android.com/reference/java/lang/Object)` ` | clone`()` |\n| ` final int ` | compareTo`(`[Config.PlaneFindingMode](/ar/reference/java/com/google/ar/core/Config.PlaneFindingMode)` arg0)` |\n| ` int ` | compareTo`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final Optional\u003cEnumDesc\u003c`[Config.PlaneFindingMode](/ar/reference/java/com/google/ar/core/Config.PlaneFindingMode)`\u003e\u003e ` | describeConstable`()` |\n| ` final boolean ` | equals`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final void ` | finalize`()` |\n| ` final `[Class](https://developer.android.com/reference/java/lang/Class)`\u003c`[Config.PlaneFindingMode](/ar/reference/java/com/google/ar/core/Config.PlaneFindingMode)`\u003e ` | getDeclaringClass`()` |\n| ` final int ` | hashCode`()` |\n| ` final `[String](https://developer.android.com/reference/java/lang/String)` ` | name`()` |\n| ` final int ` | ordinal`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n| ` static \u003cT extends `[Enum](https://developer.android.com/reference/java/lang/Enum)`\u003cT\u003e\u003e T ` | valueOf`(`[Class](https://developer.android.com/reference/java/lang/Class)`\u003cT\u003e arg0, `[String](https://developer.android.com/reference/java/lang/String)` arg1)` |\n\nFrom `class\njava.lang.Object` \n\n|---------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|\n| ` `[Object](https://developer.android.com/reference/java/lang/Object)` ` | clone`()` |\n| ` boolean ` | equals`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` void ` | finalize`()` |\n| ` final `[Class](https://developer.android.com/reference/java/lang/Class)`\u003c?\u003e ` | getClass`()` |\n| ` int ` | hashCode`()` |\n| ` final void ` | notify`()` |\n| ` final void ` | notifyAll`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n| ` final void ` | wait`(long arg0, int arg1)` |\n| ` final void ` | wait`(long arg0)` |\n| ` final void ` | wait`()` |\n\nFrom `interface\njava.lang.constant.Constable` \n\n|-----------------------------------------------|-----------------------|\n| ` abstract Optional\u003c? extends ConstantDesc\u003e ` | describeConstable`()` |\n\nFrom `interface\njava.lang.Comparable` \n\n|------------------|--------------------------------------------------------------------------------------------------------------|\n| ` abstract int ` | compareTo`(`[Config.PlaneFindingMode](/ar/reference/java/com/google/ar/core/Config.PlaneFindingMode)` arg0)` |\n\nEnum Values\n-----------\n\n#### public\nstatic\nfinal\nConfig.PlaneFindingMode\nDISABLED\n\n### DISABLED\n\n```java\npublic static final Config.PlaneFindingMode DISABLED\n``` \nPlane detection is disabled.\n\n#### public\nstatic\nfinal\nConfig.PlaneFindingMode\nHORIZONTAL\n\n### HORIZONTAL\n\n```java\npublic static final Config.PlaneFindingMode HORIZONTAL\n``` \nDetection of only horizontal planes is enabled.\n\n#### public\nstatic\nfinal\nConfig.PlaneFindingMode\nHORIZONTAL_AND_VERTICAL\n\n### HORIZONTAL_AND_VERTICAL\n\n```java\npublic static final Config.PlaneFindingMode HORIZONTAL_AND_VERTICAL\n``` \nDetection of both horizontal and vertical planes is enabled.\n\n#### public\nstatic\nfinal\nConfig.PlaneFindingMode\nVERTICAL\n\n### VERTICAL\n\n```java\npublic static final Config.PlaneFindingMode VERTICAL\n``` \nDetection of only vertical planes is enabled."]]