java.security
Enum KeyRep.Type

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Enum sample code for java.lang.Enum definition code for java.lang.Enum <KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type >
      extended by java.security.KeyRep.Type
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable , Comparable sample code for java.lang.Comparable definition code for java.lang.Comparable <KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type >
Enclosing class:
KeyRep sample code for java.security.KeyRep definition code for java.security.KeyRep

public static enum KeyRep.Type
extends Enum sample code for java.lang.Enum definition code for java.lang.Enum <KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type >

Key type.

Since:
1.5

Enum Constant Summary
PRIVATE sample code for java.security.KeyRep.Type.PRIVATE definition code for java.security.KeyRep.Type.PRIVATE
          Type for private keys.
PUBLIC sample code for java.security.KeyRep.Type.PUBLIC definition code for java.security.KeyRep.Type.PUBLIC
          Type for public keys.
SECRET sample code for java.security.KeyRep.Type.SECRET definition code for java.security.KeyRep.Type.SECRET
          Type for secret keys.
 
Method Summary
static KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type valueOf sample code for java.security.KeyRep.Type.valueOf(java.lang.String) definition code for java.security.KeyRep.Type.valueOf(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  name)
          Returns the enum constant of this type with the specified name.
static KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type [] values sample code for java.security.KeyRep.Type.values() definition code for java.security.KeyRep.Type.values() ()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum sample code for java.lang.Enum definition code for java.lang.Enum
clone sample code for java.lang.Enum.clone() definition code for java.lang.Enum.clone() , compareTo sample code for java.lang.Enum.compareTo(E) definition code for java.lang.Enum.compareTo(E) , equals sample code for java.lang.Enum.equals(java.lang.Object) definition code for java.lang.Enum.equals(java.lang.Object) , getDeclaringClass sample code for java.lang.Enum.getDeclaringClass() definition code for java.lang.Enum.getDeclaringClass() , hashCode sample code for java.lang.Enum.hashCode() definition code for java.lang.Enum.hashCode() , name sample code for java.lang.Enum.name() definition code for java.lang.Enum.name() , ordinal sample code for java.lang.Enum.ordinal() definition code for java.lang.Enum.ordinal() , toString sample code for java.lang.Enum.toString() definition code for java.lang.Enum.toString() , valueOf sample code for java.lang.Enum.valueOf(java.lang.Class, java.lang.String) definition code for java.lang.Enum.valueOf(java.lang.Class, java.lang.String)
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Enum Constant Detail

SECRET

public static final KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type  SECRET
Type for secret keys.


PUBLIC

public static final KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type  PUBLIC
Type for public keys.


PRIVATE

public static final KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type  PRIVATE
Type for private keys.

Method Detail

values sample code for java.security.KeyRep.Type.values() definition code for java.security.KeyRep.Type.values()

public static final KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type [] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(KeyRep.Type c : KeyRep.Type.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf sample code for java.security.KeyRep.Type.valueOf(java.lang.String) definition code for java.security.KeyRep.Type.valueOf(java.lang.String)

public static KeyRep.Type sample code for java.security.KeyRep.Type definition code for java.security.KeyRep.Type  valueOf(String sample code for java.lang.String definition code for java.lang.String  name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if this enum type has no constant with the specified name