的意思 { *; } 在混淆器中

Meaning of { *; } in ProGuard

考虑这个 proguard 语句:

-keep public class * extends android.support.design.widget.CoordinatorLayout$Behavior { *; }

在这个语句中添加{ *; 是什么意思? } 是什么意思?

是否保留所有方法?所有领域?或者只是整个 class?

在ProGuard中用作通配符,表示all members and methods in the class

来源:ProGuard manual, Stack overflow