Update the docs to clarify the ordering constraints.

Change-Id: Ib3932e637a675c875b9ed3482826a150b845a385
This commit is contained in:
Jeff Hamilton
2010-12-05 21:45:22 -06:00
parent 3d524e5626
commit c1576ad627

View File

@@ -113,6 +113,11 @@ public class Tag implements Parcelable {
/**
* Returns technologies present in the tag that this implementation understands,
* or a zero length array if there are no supported technologies on this tag.
*
* The elements of the list are guaranteed be one of the constants defined in
* {@link TagTechnology}.
*
* The ordering of the returned array is undefined and should not be relied upon.
*/
public int[] getTechnologyList() {
return Arrays.copyOf(mTechList, mTechList.length);