[[["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\u003eLightEstimate.State\u003c/code\u003e is an enum that represents the state of a light estimate in ARCore.\u003c/p\u003e\n"],["\u003cp\u003eIt has two possible values: \u003ccode\u003eNOT_VALID\u003c/code\u003e and \u003ccode\u003eVALID\u003c/code\u003e, indicating whether the light estimate is currently valid.\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.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use \u003ccode\u003eLightEstimate.State\u003c/code\u003e to check the validity of a light estimate before using it in their AR applications.\u003c/p\u003e\n"]]],[],null,["# LightEstimate.State\n\n`\npublic static final enum\n`**LightEstimate.State**`\n` \nLight Estimate States. \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`(`[LightEstimate.State](/ar/reference/java/com/google/ar/core/LightEstimate.State)` arg0)` |\n| ` int ` | compareTo`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final Optional\u003cEnumDesc\u003c`[LightEstimate.State](/ar/reference/java/com/google/ar/core/LightEstimate.State)`\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`[LightEstimate.State](/ar/reference/java/com/google/ar/core/LightEstimate.State)`\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`(`[LightEstimate.State](/ar/reference/java/com/google/ar/core/LightEstimate.State)` arg0)` |\n\nEnum Values\n-----------\n\n#### public\nstatic\nfinal\nLightEstimate.State\nNOT_VALID\n\n### NOT_VALID\n\n```java\npublic static final LightEstimate.State NOT_VALID\n``` \nThe light estimate is not valid this frame\n\n#### public\nstatic\nfinal\nLightEstimate.State\nVALID\n\n### VALID\n\n```java\npublic static final LightEstimate.State VALID\n``` \nThe light estimate is valid this frame"]]