blob: 9d0ff38222a4b9f7c0b6a25dfdf858164f4cf2fd [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.asn1;
/**
* General interface implemented by ASN.1 STRING objects for extracting the content String.
* @hide This class is not part of the Android public SDK API
*/
public interface ASN1String
{
/**
* Return a Java String representation of this STRING type's content.
* @return a Java String representation of this STRING.
*/
public String getString();
}