Jhow verificar se uma string é um java de pontuação

if (Pattern.matches("\\p{Punct}", str)) {
    ...
}
Inna Kim