package org.jibble.pircbot; import java.util.Arrays; import java.util.List; public class NickConstants { /** * All the allowed characters to be within the prefix of a nickname */ public static final List<Character> nickPrefixes = Arrays.asList(new Character[]{'~', '@', '&', '%', '+', '.'}); }