Added in API level 26
    Attribute
interface Attribute
| java.security.KeyStore.Entry.Attribute | 
An attribute associated with a keystore entry. It comprises a name and one or more values.
Summary
| Public methods | |
|---|---|
| abstract String! | getName()Returns the attribute's name. | 
| abstract String! | getValue()Returns the attribute's value. | 
Public methods
getName
Added in API level 26
      abstract fun getName(): String!
Returns the attribute's name.
| Return | |
|---|---|
| String! | the attribute name | 
getValue
Added in API level 26
      abstract fun getValue(): String!
Returns the attribute's value. Multi-valued attributes encode their values as a single string.
| Return | |
|---|---|
| String! | the attribute value | 
