Team LiB
Previous Section Next Section

KeyRep.Typejava.security

Java 5.0serializable comparable enum

The constants defined by this enumerated type represent the general types of cryptographic keys: public keys, private keys, and secret keys.

public enum KeyRep.Type {
// Enumerated Constants
     SECRET,  
     PUBLIC,  
     PRIVATE;  
// Public Class Methods
     public static KeyRep.Type valueOf(String name);  
     public static final KeyRep.Type[ ] values( );  
}

Passed To

KeyRep.KeyRep( )

    Team LiB
    Previous Section Next Section