컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
GetAdSelectionDataOutcome
public
final
class
GetAdSelectionDataOutcome
extends Object
광고 선택을 위해 기기에서 수집된 광고 선택 데이터를 나타냅니다.
요약
상속된 메서드 |
java.lang.Object
클래스에서 상속
Object
|
clone()
이 개체의 사본을 만들어 반환합니다.
|
boolean
|
equals(Object obj)
일부 다른 개체가 이 개체와 '같은'지 여부를 나타냅니다.
|
void
|
finalize()
가비지 컬렉션이 더 이상 객체에 관한 참조가 없다고 판단하는 경우 객체의 가비지 컬렉터에서 호출합니다.
|
final
Class<?>
|
getClass()
이 Object 의 런타임 클래스를 반환합니다.
|
int
|
hashCode()
객체의 해시 코드 값을 반환합니다.
|
final
void
|
notify()
이 객체의 모니터에서 대기 중인 단일 스레드의 대기 모드를 해제합니다.
|
final
void
|
notifyAll()
이 개체의 모니터에서 대기 중인 모든 스레드의 대기 모드를 해제합니다.
|
String
|
toString()
객체의 문자열 표현을 반환합니다.
|
final
void
|
wait(long timeoutMillis, int nanos)
일반적으로 알림을 받거나 중단되어 절전 모드에서 해제될 때까지 또는 일정 시간이 경과할 때까지 현재 스레드가 대기하도록 합니다.
|
final
void
|
wait(long timeoutMillis)
일반적으로 알림을 받거나 중단되어 절전 모드에서 해제될 때까지 또는 일정 시간이 경과할 때까지 현재 스레드가 대기하도록 합니다.
|
final
void
|
wait()
일반적으로 알림을 받거나 중단되어 절전 모드에서 해제될 때까지 현재 스레드가 대기하도록 합니다.
|
|
공개 메서드
getAdSelectionData
public byte[] getAdSelectionData ()
기기에서 수집된 adSelectionData를 반환합니다.
반환 값 |
byte[] |
이 값은 null 일 수 있습니다. |
getAdSelectionId
public long getAdSelectionId ()
AdSelection을 식별하는 adSelectionId를 반환합니다.
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-07-27(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-27(UTC)"],[],[],null,["# GetAdSelectionDataOutcome\n\n[**Added in Android UpsideDownCakePrivacySandbox**](/preview) \nSummary: [Methods](#pubmethods) \\| [Inherited Methods](#inhmethods) \n\nGetAdSelectionDataOutcome\n=========================\n\n\n`\npublic\n\nfinal\n\nclass\nGetAdSelectionDataOutcome\n`\n\n\n`\n\nextends `[Object](/reference/java/lang/Object)`\n\n\n`\n\n`\n\n\n`\n\n|---|----------------------------------------------------------|\n| [java.lang.Object](/reference/java/lang/Object) ||\n| ↳ | android.adservices.adselection.GetAdSelectionDataOutcome |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nRepresents ad selection data collected from device for ad selection.\n\nSummary\n-------\n\n| ### Public methods ||\n|-----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` byte[]` | ` `[getAdSelectionData](/design-for-safety/privacy-sandbox/reference/adservices/adselection/GetAdSelectionDataOutcome#getAdSelectionData())`() ` Returns the adSelectionData that is collected from device. |\n| ` long` | ` `[getAdSelectionId](/design-for-safety/privacy-sandbox/reference/adservices/adselection/GetAdSelectionDataOutcome#getAdSelectionId())`() ` Returns the adSelectionId that identifies the AdSelection. |\n\n| ### Inherited methods |\n|-----------------------|---|\n| From class ` `[java.lang.Object](/reference/java/lang/Object)` ` |---------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` `[Object](/reference/java/lang/Object) | ` `[clone](/reference/java/lang/Object#clone())`() ` Creates and returns a copy of this object. | | ` boolean` | ` `[equals](/reference/java/lang/Object#equals(java.lang.Object))`(`[Object](/reference/java/lang/Object)` obj) ` Indicates whether some other object is \"equal to\" this one. | | ` void` | ` `[finalize](/reference/java/lang/Object#finalize())`() ` Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. | | ` final `[Class](/reference/java/lang/Class)`\u003c?\u003e` | ` `[getClass](/reference/java/lang/Object#getClass())`() ` Returns the runtime class of this `Object`. | | ` int` | ` `[hashCode](/reference/java/lang/Object#hashCode())`() ` Returns a hash code value for the object. | | ` final void` | ` `[notify](/reference/java/lang/Object#notify())`() ` Wakes up a single thread that is waiting on this object's monitor. | | ` final void` | ` `[notifyAll](/reference/java/lang/Object#notifyAll())`() ` Wakes up all threads that are waiting on this object's monitor. | | ` `[String](/reference/java/lang/String) | ` `[toString](/reference/java/lang/Object#toString())`() ` Returns a string representation of the object. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait(long,%20int))`(long timeoutMillis, int nanos) ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*, or until a certain amount of real time has elapsed. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait(long))`(long timeoutMillis) ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*, or until a certain amount of real time has elapsed. | | ` final void` | ` `[wait](/reference/java/lang/Object#wait())`() ` Causes the current thread to wait until it is awakened, typically by being *notified* or *interrupted*. | ||\n\nPublic methods\n--------------\n\n### getAdSelectionData\n\n[**Added in Android UpsideDownCakePrivacySandbox**](/preview) \n\n```\npublic byte[] getAdSelectionData ()\n```\n\nReturns the adSelectionData that is collected from device.\n\n\u003cbr /\u003e\n\n| Returns ||\n|----------|----------------------------------|\n| `byte[]` | This value may be `null`. \u003cbr /\u003e |\n\n### getAdSelectionId\n\n[**Added in Android UpsideDownCakePrivacySandbox**](/preview) \n\n```\npublic long getAdSelectionId ()\n```\n\nReturns the adSelectionId that identifies the AdSelection.\n\n\u003cbr /\u003e\n\n| Returns ||\n|--------|--------|\n| `long` | \u003cbr /\u003e |"]]